-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.39 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.39 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "polar-init",
"version": "0.3.1",
"license": "Apache-2.0",
"bin": "bin/cli.js",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "pnpm run copy:templates && tsup ./src/cli.tsx --format esm",
"dev": "pnpm run copy:templates && tsc --watch",
"format": "prettier --write ./src",
"test": "prettier --check ./src && xo",
"copy:templates": "mkdir -p dist/templates && cp -r templates dist"
},
"files": [
"dist",
"bin"
],
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@types/cross-spawn": "^6.0.6",
"cross-spawn": "^7.0.6",
"ink": "^6.3.1",
"ink-link": "^5.0.0",
"listr": "^0.14.3",
"meow": "^14.0.0",
"next": "16.0.0",
"open": "^10.2.0",
"prompts": "^2.4.2",
"react": "19.2.0",
"react-dom": "19.2.0",
"tsup": "^8.5.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^8.0.1",
"@types/listr": "^0.14.10",
"@types/prompts": "^2.4.9",
"@types/react": "19.2.2",
"@vdemedes/prettier-config": "^2.0.1",
"chalk": "^5.6.2",
"eslint": "^9.38.0",
"eslint-config-next": "16.0.0",
"eslint-config-xo-react": "^0.28.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"ink-testing-library": "^4.0.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"xo": "^1.2.3"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"prettier": true,
"semicolon": true,
"rules": {
"react/prop-types": "off",
"n/prefer-global/process": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/switch-exhaustiveness-check": "off",
"@typescript-eslint/no-floating-promises": "off",
"unicorn/prefer-top-level-await": "off",
"unicorn/no-array-reduce": "off",
"unicorn/no-process-exit": "off",
"unicorn/catch-error-name": "off",
"unicorn/prevent-abbreviations": "off",
"unicorn/import-style": "off",
"promise/prefer-await-to-then": "off",
"no-await-in-loop": "off",
"new-cap": "off",
"import-x/no-unassigned-import": "off",
"object-shorthand": "off",
"prefer-const": "off",
"capitalized-comments": "off"
}
},
"prettier": "@vdemedes/prettier-config",
"pnpm": {
"overrides": {
"@types/react": "19.2.2"
}
}
}