-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.91 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
{
"name": "@phcdevworks/spectre-init",
"version": "1.0.0",
"description": "Spectre initialization and project scaffolding tool",
"type": "module",
"packageManager": "npm@11.18.0",
"bin": {
"spectre-init": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"templates"
],
"keywords": [
"spectre",
"init",
"scaffolding",
"phcdevworks",
"template"
],
"author": "PHCDevworks",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/phcdevworks"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/phcdevworks/spectre-init.git"
},
"bugs": {
"url": "https://github.com/phcdevworks/spectre-init/issues"
},
"homepage": "https://github.com/phcdevworks/spectre-init#readme",
"engines": {
"node": "^22.12.0 || >=24.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"release:propose": "node --experimental-strip-types scripts/propose-version.ts",
"lint": "eslint .",
"format": "prettier --write .",
"check:ecosystem": "spectre-manifest-validate spectre.manifest.json && spectre-manifest-check spectre.manifest.json .",
"check:version-sync": "node --experimental-strip-types scripts/check-readme-version.ts",
"check": "npm run typecheck && npm run lint && npm run build && npm run check:version-sync && npm run check:ecosystem",
"prepublishOnly": "npm run check"
},
"dependencies": {
"@inquirer/prompts": "^8.5.2",
"fs-extra": "^11.3.6"
},
"devDependencies": {
"@phcdevworks/spectre-manifest": "^1.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^26.1.0",
"eslint": "^10.6.0",
"jiti": "^2.7.0",
"prettier": "^3.9.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1"
}
}