-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.9 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
{
"name": "@domstack/create-app",
"description": "Create a new DOMStack app",
"version": "0.0.0",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
"bugs": {
"url": "https://github.com/bcomnes/create-domstack-app/issues"
},
"dependencies": {},
"devDependencies": {
"@voxpelli/tsconfig": "^16.1.0",
"@types/node": "^26.0.0",
"neostandard": "^0.13.0",
"npm-run-all2": "^9.0.0",
"releasearoni": "^0.2.0",
"typescript": "~6.0.3"
},
"engines": {
"node": "^22.18.0 || >=24.0.0",
"npm": ">=10"
},
"homepage": "https://github.com/bcomnes/create-domstack-app",
"keywords": [
"domstack",
"scaffold",
"static-site-generator"
],
"files": [
"bin.js",
"index.js",
"index.d.ts",
"index.d.ts.map",
"CHANGELOG.md"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"module": "index.js",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"create-domstack-app": "./bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bcomnes/create-domstack-app.git"
},
"scripts": {
"prepublishOnly": "releasearoni",
"postpublish": "npm run clean",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:tsc": "tsc",
"test:node-test": "node --experimental-test-coverage --test-reporter=spec --test-reporter=lcov --test-reporter-destination=stdout --test-reporter-destination=lcov.info --test",
"version": "releasearoni version",
"build": "npm run clean && run-p build:*",
"build:declaration": "tsc -p declaration.tsconfig.json",
"clean": "run-p clean:*",
"clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f -name '*.d.ts*')",
"clean:js-top": "rm -rf $(find . -maxdepth 1 -type f -name '*.js' ! -name '*.config.js')"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
}
}