-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.11 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
{
"name": "@fleet-sdk/compiler",
"version": "0.8.0",
"description": "Sigma.JS powered ErgoScript compiler.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"sideEffects": false,
"repository": "github:fleet-sdk/fleet",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"ergo",
"blockchain",
"compiler"
],
"dependencies": {
"@fleet-sdk/common": "workspace:^",
"@fleet-sdk/core": "workspace:^",
"@fleet-sdk/crypto": "workspace:^",
"@fleet-sdk/serializer": "workspace:^",
"sigmastate-js": "0.4.6"
},
"scripts": {
"build": "tsup --config ../../tsup.config.ts"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"!**/*.spec.*",
"!**/*.json",
"!tests",
"CHANGELOG.md",
"LICENSE",
"README.md"
]
}