-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.45 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.45 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
{
"name": "motoko",
"version": "4.5.0",
"description": "Compile and run Motoko smart contracts in Node.js or the browser.",
"author": "Ryan Vandersmith (https://github.com/rvanasa)",
"license": "Apache-2.0",
"main": "./index.js",
"types": "lib/versions/moc.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/caffeinelabs/node-motoko.git"
},
"scripts": {
"build": "rimraf ./lib && tsc -p .",
"prepare": "husky",
"generate": "node utils/generate",
"test": "jest",
"size-limit": "size-limit",
"precommit": "lint-staged",
"prepublishOnly": "run-s build test"
},
"dependencies": {
"cross-fetch": "3.1.5",
"debug": "^4.4.3",
"parse-github-url": "1.0.3",
"sanitize-filename": "^1.6.4"
},
"devDependencies": {
"@dfinity/pic": "^0.13.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.15",
"@types/parse-github-url": "^1.0.3",
"@wasmer/wasi": "^1.2.2",
"axios": "^1.7.8",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"size-limit": "^11.1.6",
"size-limit-node-esbuild": "^0.4.0",
"size-limit-preset-node-lib": "^0.4.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"lint-staged": {
"{lib,contrib,utils}/**/*.{js,ts,jsx,tsx}": [
"prettier --write"
]
},
"directories": {
"lib": "lib",
"example": "examples"
},
"files": [
"index.js",
"interpreter.js",
"src/**/*",
"lib/**/*",
"contrib/**/*",
"versions/latest/**/*",
"packages/latest/**/*"
],
"keywords": [
"motoko",
"language",
"programming-language",
"dfinity",
"smart-contract",
"canister",
"browser",
"ic",
"icp",
"internet-computer",
"blockchain",
"cryptocurrency",
"nft",
"token"
],
"size-limit": [
{
"path": "lib/index.js"
},
{
"path": "packages/latest/core.json"
},
{
"path": "versions/latest/moc.min.js"
},
{
"path": "versions/latest/moc_interpreter.min.js"
}
]
}