-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 933 Bytes
/
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
{
"name": "create-emp",
"version": "0.0.6",
"description": "Create a new EMP project",
"homepage": "https://github.com/empjs/emp-next",
"repository": {
"type": "git",
"url": "https://github.com/empjs/create-emp"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=16.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"create-emp": "./dist/index.js"
},
"files": [
"template",
"dist"
],
"scripts": {
"build": "modern build",
"dev": "modern build --watch",
"start": "node ./dist/index.js"
},
"devDependencies": {
"@clack/prompts": "^0.7.0",
"@modern-js/module-tools": "^2.48.0",
"@types/node": "16.x",
"rslog": "^1.2.1",
"typescript": "^5.3.0"
},
"publishConfig": {
"access": "public"
}
}