-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.41 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.41 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
{
"name": "@cto.af/create",
"version": "1.0.7",
"decription": "Create a @cto.af-style project",
"bin": {
"create": "index.js"
},
"files": [
"index.js",
"template/",
"!template/node_modules",
"!template/pnpm-lock.yaml"
],
"type": "module",
"keywords": [
"scaffold,",
"template,",
"generate,",
"project"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cto-af/create.git"
},
"homepage": "https://github.com/cto-af/create#readme",
"bugs": {
"url": "https://github.com/cto-af/create/issues"
},
"scripts": {
"clean": "rimraf template/pnpm-lock.yaml template/node_modules test",
"lint": "eslint .",
"pretest": "npm run clean",
"test": "mkdir test && cd test && ../index.js --noexec && pnpm i && npm run test && npm run lint",
"build": "npm run lint && npm run test"
},
"dependencies": {
"execa": "~9.6.1",
"glob": "~13.0.6",
"simple-scaffold": "~3.1.1"
},
"devDependencies": {
"@cto.af/eslint-config": "^6.2.5",
"@eslint/markdown": "^8.0.0",
"eslint": "^10.1.0",
"eslint-plugin-jsdoc": "^62.8.1",
"npm-check-updates": "^19.6.6",
"rimraf": "^6.1.3",
"tsdown": "^0.21.6",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20"
}
}