-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 804 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 804 Bytes
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
{
"$schema": "https://json.schemastore.org/package",
"name": "@nodepp/example",
"version": "1.0.0",
"author": {
"name": "Daniel Boll",
"email": "danielboll.dev@proton.me",
"url": "https://github.com/Daniel-Boll"
},
"homepage": "https://github.com/Daniel-Boll/node++-boilerplate",
"license": "MIT",
"scripts": {
"start": "tsnd --respawn src/index.ts",
"run:only": "tsnd src/index.ts",
"build": "tsc -p tsconfig.json",
"gen:lib": "node-gyp configure && node-gyp build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"node-addon-api": "^6.0.0",
"node-gyp": "^9.3.1",
"ts-node-dev": "^2.0.0",
"@nodepp/example": "file:./node_modules/@nodepp/example"
},
"devDependencies": {
"typescript": "^5.0.3"
}
}