-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "usergeek-ic-js",
"version": "1.0.6",
"description": "Usergeek Javascript SDK for Internet Computer",
"main": "./lib/es5/index.js",
"author": "Usergeek <[email protected]>",
"directories": {
"lib": "lib"
},
"keywords": [
"analytics",
"usergeek",
"javascript",
"stats",
"tracking",
"dfinity",
"ic"
],
"files": [
"lib/**/*"
],
"peerDependencies": {
"@dfinity/agent": ">=1.4.0",
"@dfinity/auth-client": ">=1.4.0"
},
"devDependencies": {
"assert": "2.0.0",
"buffer": "6.0.3",
"html-webpack-plugin": "5.3.1",
"process": "0.11.10",
"stream-browserify": "3.0.0",
"ts-loader": "8.3.0",
"typescript": "^4.2.4",
"webpack": "^5.92.0",
"webpack-cli": "4.5.0",
"webpack-dev-server": "^5.0.4"
},
"scripts": {
"clean": "npm run clean_lib",
"clean_lib": "rm -rf lib",
"build": "npm run clean && npm run build_es5 && npm run copy_did",
"build_es5": "tsc --project tsconfig.json",
"copy_did": "cp src/canisters/*.did.d.ts lib/es5/canisters"
}
}