-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 KB
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
{
"name": "derw",
"version": "0.1.0",
"description": "An Elm-inspired language that transpiles to TypeScript",
"main": "index.js",
"bin": "build/cli.js",
"scripts": {
"postinstall": "npx ts-node src/cli.ts compile",
"build": "npx derw compile",
"test": "npx @eeue56/bach",
"test-chromebook": "./test_on_chromebook.sh",
"bench": "npx @eeue56/mainc",
"format": "npx prettier --write .",
"prepublish": "npx ts-node src/cli.ts compile && npx tsc -p tsconfig.json",
"stdlib": "npx ts-node src/cli.ts compile --files ../derw-lang/stdlib/src/*.derw --output ../derw-lang/stdlib",
"test-stdlib": "npx @eeue56/bach --file ../derw-lang/stdlib/src/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eeue56/derw.git"
},
"keywords": [
"derw",
"typescript",
"hiraeth"
],
"author": "eeue56",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/eeue56/derw/issues"
},
"homepage": "https://github.com/eeue56/derw#readme",
"devDependencies": {
"@eeue56/mainc": "^0.0.6",
"@eeue56/ts-assert": "^0.0.2",
"@types/node": "^16.3.1",
"prettier": "^3.6.2"
},
"dependencies": {
"@eeue56/adeilad": "^0.0.2",
"@eeue56/bach": "^0.2.1",
"@eeue56/baner": "^0.0.3",
"@eeue56/ts-core": "^3.0.1",
"chokidar": "^3.5.2",
"esbuild": "^0.25.9",
"typescript": "^5.9.2"
}
}