-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.36 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
{
"name": "create-purista",
"version": "2.0.5",
"description": "Init a PURISTA project",
"author": "Sebastian Wessel",
"keywords": [
"purista",
"framework",
"typescript"
],
"bin": {
"create-purista": "bin.js"
},
"files": [
"bin.js"
],
"homepage": "https://purista.dev",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"licenses": [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "https://github.com/puristajs/create-purista.git"
},
"scripts": {
"bin": "./bin",
"build": "tsc --noEmit && bun run lint && bun ./build.ts && chmod +x ./bin.js ",
"release": "bun run build && np",
"lint": "bunx @biomejs/biome check",
"lint:fix": "bunx @biomejs/biome check --write",
"test": "echo \"Error: no test specified\""
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@inquirer/confirm": "^5.1.6",
"@inquirer/input": "^4.1.6",
"@inquirer/select": "^4.0.9",
"@types/node": "^22.13.4",
"@types/yargs-parser": "^21.0.3",
"chalk": "^5.4.1",
"change-case": "^5.4.4",
"esbuild": "^0.25.0",
"execa": "^9.5.2",
"nanospinner": "^1.2.2",
"np": "^10.2.0",
"tiged": "^2.12.7",
"type-fest": "^4.35.0",
"typescript": "^5.7.3",
"yargs-parser": "^21.1.1"
},
"license": "MIT",
"trustedDependencies": [
"core-js",
"@biomejs/biome"
]
}