-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "@makepad/create-web-component",
"version": "1.0.0",
"description": "Creates a new web component with no configuration",
"main": "dist/index.mjs",
"module": "true",
"scripts": {
"build": "./node_modules/.bin/tsc -p tsconfig.json",
"build:watch": "./node_modules/.bin/tsc -p tsconfig.json --watch",
"prepare": "npm run build"
},
"bin": {
"create-web-component": "dist/index.mjs"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Makepad-fr/create-web-component.git"
},
"keywords": [
"TypeScript",
"JavaScript",
"WebComponents",
"build-tools",
"zero-configuration",
"cli"
],
"author": "Makepad Developers <dev@makepad.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Makepad-fr/create-web-component/issues"
},
"homepage": "https://github.com/Makepad-fr/create-web-component#readme",
"dependencies": {
"@inquirer/confirm": "^2.0.7",
"@inquirer/input": "^1.2.6",
"ejs": "^3.1.9",
"ora": "^7.0.1"
},
"devDependencies": {
"@types/ejs": "^3.1.2",
"typescript": "5.1.6"
}
}