forked from canton-network/wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.97 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@canton-network/core-token-standard",
"version": "1.10.0",
"type": "module",
"description": "daml codegen js for core token standard",
"license": "Apache-2.0",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.browser.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "yarn clean && rollup -c && yarn clean:types-tmp",
"dev": "rollup -c -w",
"clean:types-tmp": "rm -rf dist/types",
"flatpack": "yarn pack --out \"$FLATPACK_OUTDIR\"",
"clean": "rm -rf dist"
},
"dependencies": {
"@canton-network/core-types": "workspace:^",
"@canton-network/core-wallet-auth": "workspace:^",
"@daml/types": "^3.5.2",
"@mojotech/json-type-validation": "^3.1.0",
"lodash": "^4.18.1",
"openapi-fetch": "^0.17.0",
"uuid": "^14.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"playwright": "^1.61.1",
"rollup": "^4.62.2",
"rollup-plugin-dts": "^6.4.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"files": [
"dist/**"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canton-network/wallet.git",
"directory": "core/token-standard"
},
"homepage": "https://github.com/canton-network/wallet/tree/main/core/token-standard#readme",
"bugs": {
"url": "https://github.com/canton-network/wallet/issues"
}
}