-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.77 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
{
"name": "@helios-lang/ir",
"version": "0.3.1",
"description": "Helios-lang intermediate representation",
"main": "src/index.js",
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"build": "pnpm run prettify && pnpm run build:types && pnpm run test:suite",
"build:types": "tsc -p jsconfig.json --noEmit false --emitDeclarationOnly",
"lint": "eslint .",
"lockfile:sync": "pnpm install --ignore-workspace",
"prepack": "pnpm run build",
"prettify": "prettier . --write",
"test": "pnpm run test:pretty && pnpm run test:types && pnpm run test:suite",
"test:pretty": "prettier . --check",
"test:suite": "node --test",
"test:types": "tsc -p jsconfig.json --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HeliosLang/ir.git"
},
"keywords": [
"Cardano",
"smart",
"contracts"
],
"author": "Christian Schmitz",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/HeliosLang/ir/issues"
},
"homepage": "https://github.com/HeliosLang/ir#readme",
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false
},
"devDependencies": {
"@types/node": "^20.14.8",
"@types/punycode": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"eslint": "^9.12.0",
"eslint-plugin-jsdoc": "^50.3.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"dependencies": {
"@helios-lang/codec-utils": "^0.2.1",
"@helios-lang/compiler-utils": "^0.2.1",
"@helios-lang/type-utils": "^0.1.25",
"@helios-lang/uplc": "^0.6.1"
}
}