forked from riusricardo/midnight-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
{
"name": "midnight-contracts-lib",
"version": "0.1.0",
"description": "Essential smart contracts library for Midnight blockchain development",
"license": "GPL-3.0",
"author": {
"name": "Ricardo Rius",
"email": "9488369+riusricardo@users.noreply.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/riusricardo/midnight-contracts.git"
},
"keywords": [
"midnight",
"blockchain",
"smart-contracts",
"compact",
"nft",
"privacy",
"zero-knowledge",
"zk-proofs",
"library",
"web3"
],
"private": true,
"workspaces": [
"contracts",
"compact"
],
"scripts": {
"compact": "turbo run compact",
"build": "turbo run build",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"test": "turbo run test --filter=@midnight-ntwrk/contracts-lib"
},
"dependencies": {
"@eslint/js": "^9.28.0",
"@midnight-ntwrk/compact-runtime": "^0.8.1",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^3.2.0"
},
"devDependencies": {
"eslint": "^9.28.0",
"http-server": "^14.1.1",
"prettier": "^3.2.5",
"turbo": "^2.5.4",
"vite": "^7.1.4",
"vite-plugin-wasm": "^3.4.1"
},
"packageManager": "yarn@1.22.22"
}