forked from kreate-art/kreate-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.85 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
83
84
85
86
87
88
{
"name": "@kreate/protocol",
"version": "0.1.0",
"description": "Kreate Protocol implementation in Generation I",
"keywords": [
"Membership"
],
"homepage": "https://github.com/kreate-community/kreate-protocol#readme",
"bugs": {
"url": "https://github.com/kreate-community/kreate-protocol/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kreate-community/kreate-protocol.git"
},
"license": "GPL-3.0",
"author": "Shinka Network",
"type": "module",
"exports": {
"./commands/*": "./dist/commands/*.js",
"./contracts/*": "./dist/contracts/*.js",
"./helpers/*": "./dist/helpers/*.js",
"./json": "./dist/json.js",
"./schema": "./dist/schema/index.js",
"./schema/*": "./dist/schema/*.js",
"./transactions/*": "./dist/transactions/*.js",
"./types": "./dist/types.js",
"./utils": "./dist/utils.js",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"./dist/*"
],
"schema": [
"./dist/schema/index.d.ts"
]
}
},
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias && ts-add-js-extension add --dir dist",
"deploy": "node --loader=./loader.js src/cli/bootstrap.ts",
"deploy-kolour-nft": "node --loader=./loader.js src/cli/bootstrap-kolour-nft.ts",
"meta-protocol:propose": "node --loader=./loader.js src/cli/meta-protocol/propose",
"meta-protocol:apply": "node --loader=./loader.js src/cli/meta-protocol/apply",
"protocol:propose": "node --loader=./loader.js src/cli/protocol/propose",
"protocol:apply": "node --loader=./loader.js src/cli/protocol/apply",
"lint": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"prepare": "npm run build",
"test": "NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-vm-modules jest",
"typecheck": "tsc --noEmit --strict",
"typecheck:watch": "tsc --noEmit --strict --watch"
},
"dependencies": {
"@hyperionbt/helios": "^0.13.13",
"@shinka-network/json-bigint": "^1.0.2",
"@sinclair/typebox": "^0.26.8",
"deep-equal": "^2.2.0",
"lucid-cardano": "^0.10.1"
},
"devDependencies": {
"@types/deep-equal": "^1.0.1",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"sort-package-json": "^2.4.1",
"ts-add-js-extension": "^1.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.5",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.3"
}
}