-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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
57
58
59
60
61
62
63
{
"name": "nasturtium",
"version": "1.3.5",
"main": "./build/index.js",
"description": "A very spicy application state library",
"author": "robertdeneo",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/n-3-0/nasturtium.git"
},
"keywords": [
"state",
"signal",
"computed",
"react"
],
"homepage": "https://github.com/n-3-0/nasturtium",
"files": [
"./README.md",
"./package.json"
],
"scripts": {
"clean": "node scripts/clean.mjs",
"compile": "npm run compile:cjs && npm run compile:esm && npm run compile:types",
"compile:cjs": "tsc --project ./tsconfig.build.json",
"compile:esm": "tsc --project ./tsconfig.buildnext.json",
"compile:types": "tsc --project ./tsconfig.types.json",
"build": "npm run clean && npm run compile && npm run bundle && npm run bundle:postprocess",
"bundle": "node scripts/prepublish.mjs",
"bundle:postprocess": "tsc-alias",
"test": "jest --coverage"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.24",
"jest": "^29.7.0",
"tar": "^6.2.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.4.5"
},
"peerDependencies": {
"preact": "^10.19.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependenciesMeta": {
"preact": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
}
}