-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 881 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 881 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
29
30
31
32
33
34
35
{
"name": "node-sdk-management-cli-example",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/descope/node-sdk.git"
},
"scripts": {
"build": "rollup -c",
"start": "tsx src/index.ts"
},
"author": "descope",
"license": "MIT",
"bugs": {
"url": "https://github.com/descope/node-sdk/issues"
},
"homepage": "https://github.com/descope/node-sdk#readme",
"dependencies": {
"@descope/node-sdk": "file:../..",
"commander": "^10.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.0",
"dotenv": "^16.1.4",
"rollup-plugin-delete": "^2.0.0",
"ts-node": "^10.8.2",
"tsx": "^4.20.3"
}
}