-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@lipsjs/lips",
"version": "0.1.2",
"description": "Fast, Lightweight Reactive UI Framework",
"main": "./dist/lips.min.js",
"types": "./dist/types/lips.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/lips.min.js",
"require": "./dist/lips.min.js",
"types": "./dist/types/lips.d.ts"
}
},
"author": "Fabrice K.E.M",
"private": false,
"scripts": {
"dev": "bun compile --watch",
"compile": "bun build --entrypoints ./test/* ./src/lips.ts --entry-naming [name].min.[ext] --minify --root . --outdir ./dist --target browser --format esm --sourcemap=external",
"build:declaration": "tsc --project tsconfig.types.json",
"prepack": "bun compile && bun run build:declaration",
"test": "Echo 'Error: No test specified' && exit 1"
},
"dependencies": {
"cash-dom": "^8.1.5",
"stylis": "^4.3.4"
},
"devDependencies": {
"@types/stylis": "^4.2.7",
"tsc": "^2.0.4",
"typescript": "^5.7.3"
},
"directories": {
"dist": "dist/",
"docs": "docs/",
"test": "test/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/fabrice8/lips"
},
"keywords": []
}