-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.47 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.47 KB
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": "create-shape-app",
"version": "0.1.7",
"description": "Scaffold Shape Builder Kit projects from pinned release tags.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shape-network/create-shape-app.git"
},
"bugs": {
"url": "https://github.com/shape-network/create-shape-app/issues"
},
"homepage": "https://github.com/shape-network/create-shape-app#readme",
"author": "williamhzo",
"keywords": [
"cli",
"create",
"scaffold",
"shape",
"builder-kit",
"ethereum",
"l2",
"web3",
"onchain",
"nextjs",
"hardhat",
"wagmi",
"viem",
"dapp"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": "./bin/create-shape-app.js",
"files": [
"bin",
"dist",
"llms.txt",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.18.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"type-check": "tsc -p tsconfig.json --noEmit",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"test": "bun run build && node --test ./test/*.test.mjs",
"dev": "bun run build && node ./bin/create-shape-app.js --help",
"prepack": "bun run lint && bun run type-check && bun run test"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^25.2.2",
"@typescript-eslint/parser": "^8.46.3",
"eslint": "^9.39.1",
"globals": "^16.4.0",
"typescript": "^5.9.3"
}
}