-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
111 lines (111 loc) · 2.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@thi.ng/pointfree-lang",
"version": "2.2.54",
"description": "Forth style syntax layer/compiler & CLI for the @thi.ng/pointfree DSL",
"type": "module",
"module": "./index.js",
"typings": "./index.d.ts",
"bin": {
"pointfree": "bin/pointfree"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/thi-ng/umbrella.git"
},
"homepage": "https://thi.ng/pointfree-lang",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/postspectacular"
},
{
"type": "patreon",
"url": "https://patreon.com/thing_umbrella"
}
],
"author": "Karsten Schmidt (https://thi.ng)",
"license": "Apache-2.0",
"scripts": {
"build": "yarn build:esbuild && yarn build:decl",
"build:decl": "tsc --declaration --emitDeclarationOnly",
"build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts && yarn build:peg",
"build:peg": "pegjs -f es -o parser.js src/grammar.pegjs",
"clean": "bun ../../tools/src/clean-package.ts",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"pub": "yarn npm publish --access public",
"test": "bun test",
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
},
"dependencies": {
"@thi.ng/api": "^8.11.11",
"@thi.ng/args": "^2.3.46",
"@thi.ng/bench": "^3.6.4",
"@thi.ng/errors": "^2.5.17",
"@thi.ng/file-io": "^2.1.15",
"@thi.ng/logger": "^3.0.21",
"@thi.ng/pointfree": "^3.1.92"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.47.9",
"esbuild": "^0.24.0",
"pegjs": "0.11.0-master.b7b87ea",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"keywords": [
"ast",
"cli",
"compiler",
"concatenative",
"dataflow",
"dsl",
"forth",
"functional",
"grammar",
"language",
"parser",
"peg",
"pipeline",
"pointfree",
"rpn",
"syntax",
"tool",
"typescript"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"files": [
"./*.js",
"./*.d.ts",
"bin"
],
"exports": {
".": {
"default": "./index.js"
},
"./api": {
"default": "./api.js"
},
"./logger": {
"default": "./logger.js"
},
"./parser": {
"default": "./parser.js"
},
"./runtime": {
"default": "./runtime.js"
}
},
"thi.ng": {
"alias": "pfl",
"parent": "@thi.ng/pointfree",
"year": 2018
}
}