forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.6 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
{
"name": "@thi.ng/dlogic",
"version": "2.1.32",
"description": "Assorted digital logic ops / constructs",
"type": "module",
"module": "./index.js",
"typings": "./index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/thi-ng/umbrella.git"
},
"homepage": "https://github.com/thi-ng/umbrella/tree/develop/packages/logic#readme",
"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": "pnpm clean && tsc --declaration",
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "pnpm doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"pub": "pnpm npm publish --access public",
"test": "testament test"
},
"dependencies": {
"@thi.ng/api": "^8.8.2"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.35.3",
"@thi.ng/testament": "^0.3.17",
"rimraf": "^5.0.1",
"tools": "workspace:^",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
},
"keywords": [
"boolean",
"digital",
"functional",
"logic",
"simulation",
"typescript"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.7"
},
"files": [
"./*.js",
"./*.d.ts"
],
"exports": {
".": {
"default": "./index.js"
}
},
"thi.ng": {
"year": 2017
}
}