-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.38 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
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
{
"name": "@origyn/csm",
"version": "1.1.0",
"description": "JavaScript library for configuring, staging and minting Origyn NFTs from a local directory.",
"author": "Origyn",
"homepage": "https://github.com/ORIGYN-SA/csm#readme",
"keywords": [
"csm",
"config",
"stage",
"mint",
"nft",
"origyn"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ORIGYN-SA/csm.git"
},
"files": [
"lib/**/*"
],
"bugs": {
"url": "https://github.com/ORIGYN-SA/csm/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run clean && npm run lint && npm run compile",
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --no-cache src",
"docs": "typedoc --plugin typedoc-plugin-markdown --githubPages false --out docs src/index.ts",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test",
"preversion": "npm run lint",
"test": "npm run build && jest",
"version": "npm run format && git add -A src"
},
"dependencies": {
"@dfinity/agent": "^0.15.6",
"@dfinity/candid": "^0.15.6",
"@dfinity/identity": "^0.15.6",
"@dfinity/principal": "^0.15.6",
"@origyn/actor-reference": "^0.1.9",
"bip39": "^3.0.4",
"fs-extra": "^10.1.0",
"hdkey": "^2.0.1",
"sha256": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/fs-extra": "^9.0.13",
"@types/hdkey": "^2.0.1",
"@types/jest": "^29.2.3",
"@types/node-fetch": "^2.6.2",
"@types/rewire": "^2.5.28",
"@types/sha256": "^0.2.0",
"babel-jest": "^29.3.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"mrmime": "^1.0.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.3",
"typedoc": "^0.24.4",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^4.9.4"
}
}