-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "cairo-vm-ts",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "Clément Walter <[email protected]>",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"prebuild": "bun run clean",
"build": "bun build --target=node ./src/index.ts --outfile=dist/index.js && bun run build:declaration",
"build:declaration": "tspc --emitDeclarationOnly --project tsconfig.types.json",
"postbuild": "rimraf tsconfig.types.tsbuildinfo"
},
"repository": {
"type": "git",
"url": "https://github.com/kkrt-labs/cairo-vm-ts"
},
"files": [
"src/**/*.ts",
"dist/*.js",
"dist/types/**/*.d.ts"
],
"prettier": {
"proseWrap": "always",
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 80
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@noble/curves": "^1.4.0",
"@scure/starknet": "^1.0.0",
"commander": "^12.1.0",
"consola": "^3.2.3",
"rimraf": "^5.0.7",
"zod": "canary"
},
"devDependencies": {
"bun-types": "^1.1.12",
"ts-patch": "^3.2.0",
"typescript": "^5.2.2",
"typescript-transform-paths": "^3.4.7"
},
"bin": {
"cairo": "./src/cli.ts",
"compare": "./src/scripts/compareCli.ts"
}
}