-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 1.95 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "signal-utils",
"version": "0.20.0",
"description": "Utils for use with the Signals Proposal: https://github.com/proposal-signals/proposal-signals",
"keywords": [
"signals",
"signal",
"reactivity",
"tracked",
"rune",
"runes",
"ember",
"glimmer",
"svelte",
"vue",
"angular",
"solid",
"preact"
],
"repository": {
"type": "git",
"url": "[email protected]:proposal-signals/signal-utils.git"
},
"license": "MIT",
"author": "NullVoxPopuli",
"type": "module",
"exports": {
".": {
"types": "./declarations/index.d.ts",
"default": "./dist/index.ts.js"
},
"./*": {
"types": "./declarations/*.d.ts",
"default": "./dist/*.ts.js"
}
},
"typesVersions": {
">=4.0.0": {
"*": [
"declarations/*"
]
}
},
"files": [
"src",
"dist",
"declarations"
],
"scripts": {
"build": "vite build",
"format": "prettier --write .",
"lint": "concurrently 'npm:lint:*'",
"lint:types": "tsc --noEmit --emitDeclarationOnly false",
"lint:prettier": "prettier --check .",
"prepack": "pnpm run build",
"start": "vite build --watch",
"test": "vitest"
},
"peerDependencies": {
"signal-polyfill": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/plugin-syntax-decorators": "^7.24.1",
"@babel/plugin-transform-typescript": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@rollup/plugin-babel": "^6.0.4",
"@tsconfig/strictest": "^2.0.5",
"@vitest/browser": "^1.4.0",
"concurrently": "^8.2.2",
"expect-type": "^0.19.0",
"globby": "^14.0.1",
"prettier": "^3.2.5",
"release-plan": "^0.9.0",
"typescript": "^5.4.3",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.8.1",
"vitest": "^1.4.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.0.0",
"pnpm": "9.0.6"
}
}