-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.89 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@crystallize/cli-next",
"version": "4.19.0",
"description": "Crystallize CLI",
"main": "./build/index.js",
"repository": "https://github.com/CrystallizeAPI/crystallize-cli-next",
"license": "MIT",
"contributors": [
"Håkon Gullord Krogh <[email protected]>",
"Brendan Goodenough <[email protected]>",
"Sébastien Morel <[email protected]>",
"Dhairya Dwivedi <[email protected]>"
],
"bin": {
"crystallize": "./build/index.js"
},
"engines": {
"node": ">=16.0"
},
"type": "module",
"volta": {
"node": "16.17.0",
"yarn": "1.22.19"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/format": "^17.0.0",
"@commitlint/types": "^17.0.0",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.2.0",
"@types/marked": "^4.0.8",
"@types/marked-terminal": "^3.1.3",
"@types/node": "^18.11.3",
"@types/react": "^17",
"@types/uuid": "^9",
"jest": "^29",
"prettier": "^2.8.3",
"ts-jest": "^29",
"typescript": "^4.9.4"
},
"scripts": {
"dev": "node -r dotenv/config build/index.js",
"watch": "tsc -W",
"build": "tsc",
"test": "jest --setupFiles dotenv/config",
"bump": "yarn tsc && yarn version --no-git-tag-version --new-version"
},
"dependencies": {
"@crystallize/import-utilities": "^1.33",
"@crystallize/js-api-client": "^3.2.0",
"chalk": "^5.2",
"cli-spinners": "^2.7.0",
"dotenv": "^16.0.3",
"gittar": "^0.1.1",
"ink": "^3.2.0",
"ink-link": "^2.0.1",
"ink-text-input": "^4.0.3",
"marked": "^4.2.12",
"marked-terminal": "^5.1.1",
"meow": "^11",
"react": "^17",
"uuid": "^9"
}
}