-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.32 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
{
"name": "@restatedev/create-app",
"version": "1.0.1",
"description": "Project template generator for the Restate TypeScript SDK",
"repository": {
"type": "git",
"url": "git+https://github.com/restatedev/node-template-generator.git"
},
"release-it": {
"git": {
"pushRepo": "https://github.com/restatedev/node-template-generator.git"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"publishConfig": {
"@restatedev:registry": "https://registry.npmjs.org"
},
"author": "Restate Developers",
"license": "MIT",
"email": "[email protected]",
"type": "commonjs",
"engines": {
"node": ">= 18"
},
"bin": {
"create-app": "bin/main.js"
},
"scripts": {
"lint": "eslint bin/**",
"format": "prettier --write \"bin/*.+(js|ts|json)\"",
"release": "release-it"
},
"files": [
"bin",
"data"
],
"dependencies": {
"decompress": "^4.2.1",
"unzipper": "0.11.4"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"eslint": "^8.57.0",
"globals": "^15.0.0",
"prettier": "^2.8.8",
"release-it": "^16.1.4"
},
"bugs": {
"url": "https://github.com/restatedev/node-template-generator/issues"
},
"homepage": "https://github.com/restatedev/node-template-generator#readme",
"main": "index.js"
}