-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.78 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.78 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
{
"name": "@tokenscript/engine-js",
"version": "1.6.1",
"description": "A Typescript implementation of the TokenScript runtime",
"repository": {
"type": "git",
"url": "https://github.com/SmartTokenLabs/tokenscript-engine.git",
"directory": "javascript/engine-js"
},
"type": "commonjs",
"main": "./dist/lib.commonjs/index.js",
"module": "./dist/lib.esm/index.js",
"types": "./dist/lib.esm/index.d.ts",
"exports": {
".": {
"import": "./dist/lib.esm/index.js",
"require": "./dist/lib.commonjs/index.js"
},
"./lite": {
"import": "./dist/lib.esm/index.lite.js",
"require": "./dist/lib.commonjs/index.lite.js"
}
},
"scripts": {
"build": "tsc && tsc -p tsconfig-commonjs.json && npm run copy-sdk",
"copy-sdk": "copyfiles -u 1 ./src/view/sdk/* ./dist/lib.esm && copyfiles copyfiles -u 1 ./src/view/sdk/* ./dist/lib.commonjs",
"watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"bundle-sdk": "node scripts/bundleSDK.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.7",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"@ethereum-attestation-service/eas-sdk": "^2.5.0",
"@peculiar/x509": "^1.11.0",
"@tokenscript/xmldsigjs": "^2.5.2",
"bignumber.js": "^9.1.2",
"ethers": "^6.13.1",
"ethers-decode-error": "^2.1.3",
"ipfs-only-hash": "^4.0.0",
"jsdom": "^22.1.0",
"lodash": "^4.17.21",
"pkijs": "3.1.0",
"webcrypto-liner": "^1.4.3"
},
"overrides": {
"xml-core": {
"@xmldom/xmldom": "^0.9.0-beta.6"
},
"pkijs": "3.1.0",
"elliptic": "^6.5.4"
}
}