-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 5.2 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 5.2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "quantumcoin",
"version": "8.0.3",
"description": "QuantumCoin.js - a post quantum cryptography SDK for QuantumCoin",
"main": "index.js",
"types": "src/index.d.ts",
"browser": {
"node:net": false
},
"typesVersions": {
"*": {
"types": [
"src/types/index.d.ts"
],
"config": [
"config.d.ts"
]
}
},
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./index.js"
},
"./config": {
"types": "./config.d.ts",
"default": "./config.js"
},
"./types": {
"types": "./src/types/index.d.ts",
"default": "./src/types/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "node --test \"test/unit/**/*.test.js\" \"test/integration/**/*.test.js\" \"test/security/**/*.test.js\" \"test/e2e/*.test.js\"",
"test:unit": "node --test \"test/unit/**/*.test.js\"",
"test:integration": "node --test \"test/integration/**/*.test.js\"",
"test:security": "node --test \"test/security/**/*.test.js\"",
"test:non-transactional": "node --test \"test/unit/**/*.test.js\" \"test/integration/**/*.test.js\" \"test/security/**/*.test.js\"",
"test:e2e": "node --test --test-concurrency=1 \"test/e2e/*.test.js\"",
"test:generator-sdk": "node --test \"test/unit/generate-contract-cli.test.js\" \"test/unit/generator.test.js\" \"test/unit/generate-sdk-artifacts-json.test.js\" && node --test --test-concurrency=1 \"test/e2e/typed-generator.e2e.test.js\" \"test/e2e/simple-erc20.generated-sdks.e2e.test.js\" \"test/e2e/all-solidity-types.generated-sdks.e2e.test.js\"",
"test:ts:generator-sdk": "npx tsx --test \"test/unit/generate-contract-cli.test.ts\" \"test/unit/generator.test.ts\" \"test/unit/generate-sdk-artifacts-json.test.ts\" && npx tsx --test --test-concurrency=1 \"test/e2e/typed-generator.e2e.test.ts\" \"test/e2e/simple-erc20.generated-sdks.e2e.test.ts\" \"test/e2e/all-solidity-types.generated-sdks.e2e.test.ts\"",
"test:ts": "npx tsx --test \"test/unit/**/*.test.ts\" \"test/integration/**/*.test.ts\" \"test/security/**/*.test.ts\"",
"test:ts:unit": "npx tsx --test \"test/unit/**/*.test.ts\"",
"test:ts:integration": "npx tsx --test \"test/integration/**/*.test.ts\"",
"test:ts:security": "npx tsx --test \"test/security/**/*.test.ts\"",
"test:ts:e2e": "npx tsx --test --test-concurrency=1 \"test/e2e/*.test.ts\" \"test/e2e/*.e2e.test.ts\" \"test/e2e/*.dynamic.test.ts\"",
"test:browser:build": "node test/browser/build.js",
"test:browser": "npm run test:browser:build && npx playwright test",
"example": "node examples/example.js",
"example:ts": "npx tsx examples/example.ts",
"example:provider": "node examples/example.js",
"example:wallet": "node examples/wallet-offline.js",
"example:wallet:ts": "npx tsx examples/wallet-offline.ts",
"example:contract:read": "node examples/read-operations.js",
"example:contract:read:ts": "npx tsx examples/read-operations.ts",
"example:events": "node examples/events.js",
"example:events:ts": "npx tsx examples/events.ts",
"example:offline-signing": "node examples/offline-signing.js",
"example:offline-signing:ts": "npx tsx examples/offline-signing.ts",
"example:sign-message": "node examples/sign-message.js",
"example:sign-message:ts": "npx tsx examples/sign-message.ts",
"example:generator-js": "node examples/example-generator-sdk-js.js",
"example:generator-js:ts": "npx tsx examples/example-generator-sdk-js.ts",
"example:generator-ts": "node examples/example-generator-sdk-ts.js",
"example:generator-ts:ts": "npx tsx examples/example-generator-sdk-ts.ts",
"examples": "node examples/example.js && node examples/wallet-offline.js && node examples/sign-message.js && node examples/read-operations.js && node examples/events.js && node examples/example-generator-sdk-js.js && node examples/example-generator-sdk-ts.js",
"examples:ts": "npx tsx examples/example.ts && npx tsx examples/wallet-offline.ts && npx tsx examples/sign-message.ts && npx tsx examples/read-operations.ts && npx tsx examples/events.ts && npx tsx examples/example-generator-sdk-js.ts && npx tsx examples/example-generator-sdk-ts.ts",
"build": "npx -p typescript tsc -p tsconfig.build.json && node scripts/copy-declarations.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quantumcoinproject/quantumcoin.js.git"
},
"files": [
"index.js",
"config.js",
"config.d.ts",
"generate-sdk.js",
"src/**/*.js",
"src/**/*.d.ts",
"README.md",
"README-SDK.md",
"LICENSE"
],
"keywords": [
"cryptography",
"quantum coins",
"quantum coin",
"quantumcoin",
"blockchain"
],
"author": "QuantumCoin Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/quantumcoinproject/quantumcoin.js/issues"
},
"homepage": "https://github.com/quantumcoinproject/quantumcoin.js#readme",
"bin": {
"sdkgen": "./generate-sdk.js"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@quantumcoin/solc": "^0.7.6",
"esbuild": "^0.28.1",
"tsx": "^4.19.0"
},
"dependencies": {
"quantum-coin-js-sdk": "2.1.1",
"seed-words": "^1.1.1"
},
"allowScripts": {
"esbuild@0.28.1": true
}
}