-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 931 Bytes
/
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
{
"description": "PetalLock",
"repository": {},
"license": "Unlicense",
"type": "module",
"devDependencies": {
"@types/node": "22.5.4",
"@zoltu/file-copier": "3.0.0",
"better-typescript-lib": "2.8.0",
"typescript": "5.5.4",
"funtypes": "5.1.0"
},
"dependencies": {
"@preact/signals": "1.2.2",
"multiformats": "13.2.2",
"preact": "10.19.3",
"viem": "2.18.5"
},
"scripts": {
"setup": "npm ci --ignore-scripts && npm run contracts && npm run vendor && npm run build",
"contracts": "cd solidity && npm ci --ignore-scripts && npm run compile && cd .. && npm run vendor",
"test": "tsc && node app/js/tests/test.js",
"build": "tsc",
"watch": "tsc --watch",
"serve": "npx http-server ./app",
"vendor": "tsc --project tsconfig.vendor.json && node --enable-source-maps ./build/vendor.mjs && node --input-type=module -e \"import { promises as fs } from 'fs'; await fs.rm('./build/vendor.mjs')\""
}
}