-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.49 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "nois",
"version": "0.0.1",
"description": "Statically typed programming language for the web",
"scripts": {
"run": "bun run src/index.ts",
"build": "npm run build:compile && npm run build:std",
"build:compile": "tsc",
"build:std": "bun --target=node build-std-index.ts && cp -r src/std dist",
"build:node": "npm run clean && npm run build && npm run build:node:imports",
"build:node:imports": "bun --target=node node-import-transform.ts",
"publish:prepare": "cp package.json dist && find dist -name \"*.spec.*\" -delete",
"publish": "npm run build && npm run publish:prepare",
"run:node": "node dist",
"test": "bun test src",
"ci": "npm run test",
"clean": "rm -rf dist",
"fmt": "biome check --apply --linter-enabled=true --formatter-enabled=true --organize-imports-enabled=true --skip-errors src"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nois-lang/nois.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nois-lang/nois/issues"
},
"homepage": "https://github.com/nois-lang/nois#readme",
"devDependencies": {
"@types/jasmine": "~4.3.5",
"@types/node": "~18.16.20",
"bun": "~1.0.23",
"typescript": "~5.3.3"
}
}