-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "uniforms-cli",
"version": "1.0.0",
"description": "CLI for uniforms",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/index.mjs",
"index.js",
"src/templates"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild && npm link && uniforms-cli",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint:code": "eslint --ext ts .",
"lint:types": "tsc --noEmit",
"lint": "npm run lint:code && npm run lint:types && npm run build"
},
"bin": {
"uniforms-cli": "index.js"
},
"devDependencies": {
"@types/prompts": "2.4.2",
"@vitest/coverage-istanbul": "2.1.6",
"commander": "12.1.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"kolorist": "1.7.0",
"node-fetch": "3.3.2",
"prettier": "3.3.3",
"prompts": "2.4.2",
"typescript": "5.6.3",
"typescript-eslint": "8.8.1",
"unbuild": "2.0.0",
"vitest": "2.1.6"
}
}