-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.28 KB
/
package.json
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
47
48
49
50
51
52
53
54
55
56
{
"name": "alfama",
"version": "1.3.24",
"author": "Abhishiv Saxena<abhishiv@gmail.com>",
"license": "MIT",
"description": "Fine-grained reactive library with no compiler, no magic, and no virtual DOM",
"keywords": [
"reactive",
"dom",
"ui",
"frontend",
"framework"
],
"repository": {
"type": "git",
"url": "https://github.com/abhishiv/alfama"
},
"files": [
"./dist"
],
"devDependencies": {
"esbuild": "^0.21.5",
"typescript": "^5.2.2",
"vitest": "^2.0.5"
},
"scripts": {
"build": "make build",
"test": "npx vitest --run",
"coverage": "npx vitest run --coverage --run",
"typecheck": "npx tsc --noEmit"
},
"sideEffects": false,
"main": "./src/index.ts",
"type": "module",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"require": "./src/index.ts"
},
"./state": {
"types": "./src/core/index.ts",
"import": "./src/core/index.ts",
"require": "./src/core/index.ts"
},
"./animation": {
"types": "./src/addons/animation/index.ts",
"import": "./src/addons/animation/index.ts",
"require": "./src/addons/animation/index.ts"
}
},
"dependencies": {
"on-change": "^5.0.1"
},
"optionalDependencies": {}
}