-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.57 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.57 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
{
"name": "@julianoczkowski/create-trimble-app",
"version": "3.3.3",
"description": "Interactive CLI to scaffold Modus 2.0 web component applications for React and Angular - templates bundled, works offline",
"type": "module",
"main": "src/cli.js",
"bin": {
"create-trimble-app": "bin/create-trimble-app.js"
},
"files": [
"bin/",
"src/",
"templates/"
],
"scripts": {
"dev": "node bin/create-trimble-app.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"prepublishOnly": "npm run test && npm audit"
},
"keywords": [
"modus",
"web-components",
"cli",
"scaffold",
"react",
"angular",
"trimble",
"create-app",
"boilerplate",
"starter",
"template",
"offline"
],
"author": "Julian Oczkowski",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/julianoczkowski/create-trimble-app.git"
},
"bugs": {
"url": "https://github.com/julianoczkowski/create-trimble-app/issues"
},
"homepage": "https://github.com/julianoczkowski/create-trimble-app#readme",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"boxen": "^8.0.1",
"commander": "^12.1.0",
"execa": "^8.0.1",
"picocolors": "^1.1.1",
"update-notifier": "^7.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.0.0",
"vitest": "^4.0.18"
}
}