-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "@helios-lang/era",
"version": "0.1.4",
"description": "\"Babbage\" or \"Conway\"",
"type": "module",
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "pnpm run prettify && pnpm run build:types && pnpm run test:suite",
"build:types": "tsc -p jsconfig.json --noEmit false --emitDeclarationOnly",
"prettify": "prettier . --write",
"test": "pnpm run test:pretty && pnpm run test:types && pnpm run test:suite",
"test:pretty": "prettier . --check",
"test:suite": "node --test --experimental-test-coverage",
"test:types": "pnpm run build:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HeliosLang/era.git"
},
"keywords": [
"Cardano",
"blockchain",
"Conway",
"Babbage"
],
"author": "Christian Schmitz",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/HeliosLang/era/issues"
},
"homepage": "https://github.com/HeliosLang/era#readme",
"devDependencies": {
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false
}
}