-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.59 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
{
"name": "polar-init",
"version": "0.2.3",
"license": "Apache-2.0",
"bin": "bin/cli.js",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "pnpm run copy:templates && tsup ./src/cli.tsx --format esm",
"dev": "pnpm run copy:templates && tsc --watch",
"test": "prettier --check . && xo && ava",
"check": "biome check --write ./src",
"copy:templates": "mkdir -p dist/templates && cp -r templates dist"
},
"files": [
"dist",
"bin"
],
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@polar-sh/sdk": "^0.17.1",
"@types/cross-spawn": "^6.0.6",
"cross-spawn": "^7.0.3",
"ink": "^4.4.1",
"ink-link": "^4.1.0",
"listr": "^0.14.3",
"meow": "^11.0.0",
"next": "^15.0.1",
"nuxt": "^3.0.0",
"open": "^10.1.0",
"prompts": "^2.4.2",
"react": "^18.2.0",
"tsup": "^8.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/listr": "^0.14.9",
"@types/prompts": "^2.4.9",
"@types/react": "^18.3.11",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^5.2.0",
"chalk": "^5.2.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ink-testing-library": "^3.0.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"xo": "^0.53.1"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
},
"prettier": "@vdemedes/prettier-config"
}