-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 905 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 905 Bytes
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
{
"name": "@statewalker/models",
"version": "0.1.5",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"files": [
"dist",
"src"
],
"license": "MIT",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"clean": "rm -rf dist",
"lint": "eslint \"**/*.ts\"",
"test": "vitest --run",
"test:watch": "vitest",
"prepublish": "yarn test && yarn build"
},
"dependencies": {
"@preact/signals-core": "^1.8.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@statewalker/eslint-config": "*",
"@statewalker/typescript-config": "*",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^22.8.6",
"eslint": "^9.14.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}