-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.04 KB
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
{
"name": "@contextco/context-node",
"version": "0.14.0",
"description": "Node SDK for the Context API",
"main": "./build/index.js",
"module": "./build/index.esm.js",
"types": "./build/ts/index.d.ts",
"scripts": {
"build": "npm run build_generated && rollup --bundleConfigAsCjs -c rollup.config.js && npm run build_types",
"prepack": "npm run build",
"build_generated": "cd generated && npm run build",
"build_types": "tsc --emitDeclarationOnly --declaration --project tsconfig.json"
},
"dependencies": {
"@azure/core-auth": "^1.5.0",
"@contextco/context-generated": "14.0.0"
},
"keywords": [
"context",
"api",
"sdk"
],
"author": "Alex Gamble",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^20.2.5",
"esbuild": "^0.17.19",
"rollup": "^3.23.0",
"rollup-plugin-dts": "^5.3.0",
"typescript": "^5.1.3"
}
}