-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 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
{
"name": "@casper-ecosystem/cep-95-js-client",
"version": "1.0.0",
"license": "Apache-2.0",
"description": "JavaScript/TypeScript client for CEP-95 (ERC-721 equivalent) NFT contracts on the Casper Network",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/casper-ecosystem/cep-95-js-client.git"
},
"homepage": "https://github.com/casper-ecosystem/cep-95-js-client#readme",
"bugs": {
"url": "https://github.com/casper-ecosystem/cep-95-js-client/issues"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "cross-env NODE_ENV=test TS_NODE_FILES=true mocha --require ts-node/register/transpile-only --extension ts \"src/tests/**/*.test.ts\"",
"prepublishOnly": "npm run format:check && npm test && npm run clean && npm run build",
"playground": "npm run dev --prefix playground"
},
"keywords": [
"Casper",
"CEP-95",
"NFT",
"ERC-721",
"blockchain",
"sdk"
],
"peerDependencies": {
"casper-js-sdk": "^5.0.11"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^14.14.31",
"casper-js-sdk": "^5.0.11",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"mocha": "^10.1.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@noble/hashes": "^1.3.3"
},
"publishConfig": {
"access": "public"
}
}