-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.7 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
{
"name": "create-cinnamon-project",
"version": "0.1.0",
"description": "A tool to automatically create Cinnamon projects.",
"main": "./dist/main.mjs",
"module": "./dist/main.mjs",
"bin": "./bin/create-cinnamon-project",
"repository": "https://github.com/apollosoftwarexyz/create-cinnamon-project",
"author": "Apollo Software Limited",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"clean": "rimraf ./dist && mkdir ./dist",
"build": "yarn clean && tsc --outDir ./dist",
"watch": "tsc-watch --outDir ./dist",
"prepare": "yarn build && chmod +x ./bin/create-cinnamon-project",
"publish": "yarn npm publish --access public",
"template:create": "mkdirp ./template",
"template:compare": "node --loader ts-node/esm ./tools/compare.mts ./templates/default.tar.gz ./template",
"template:pack": "FORCE_COLOR=1 node tools/ask.mjs \"Template name\" --snake-case | xargs -I {} tar -czf ./templates/{}.tar.gz -C ./template .",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"chalk": "^5.3.0",
"cli-spinners": "^2.9.2",
"inquirer": "^9.2.12",
"lookpath": "^1.2.2",
"rxjs": "^7.8.1",
"tar": "^6.2.0"
},
"devDependencies": {
"@types/eslint": "^8",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@types/tar": "^6",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-plugin-import-quotes": "^0.0.1",
"jest": "^29.7.0",
"mkdirp": "^3.0.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.2"
}
}