-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
94 lines (94 loc) · 1.98 KB
/
deno.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
{
"name": "@oazmi/tsignal",
"version": "0.4.0",
"description": "a topological order respecting signals library inspired by SolidJS",
"author": "Omar Azmi",
"license": "Anti-Competition License",
"repository": {
"type": "git",
"url": "git+https://github.com/omar-azmi/tsignal_ts.git"
},
"bugs": {
"url": "https://github.com/omar-azmi/tsignal_ts/issues"
},
"exports": {
".": "./src/mod.ts",
"./async_signal": "./src/async_signal.ts",
"./collection_signal": "./src/collection_signal.ts",
"./context": "./src/context.ts",
"./funcdefs": "./src/funcdefs.ts",
"./record_signal": "./src/record_signal.ts",
"./signal": "./src/signal.ts",
"./typedefs": "./src/typedefs.ts",
"./jsx-runtime": "./src/jsx-runtime/mod.ts"
},
"publish": {
"exclude": [
"./.vscode/",
"./.github/",
"./examples/",
"./test/",
"./build*.ts",
"./clean.ts"
]
},
"test": {
"include": [
"./test/",
"./src/mod.ts"
]
},
"fmt": {
"useTabs": true,
"semiColons": false,
"singleQuote": false,
"lineWidth": 800,
"proseWrap": "never",
"include": [
"./src/"
]
},
"compilerOptions": {
"lib": [
"esnext",
"dom",
"deno.ns"
],
"strict": true,
"allowJs": true
},
"package_json": {
"dependencies": {},
"devDependencies": {
"typescript": "^5.0.0",
"esbuild": "^0.20.1",
"typedoc": "^0.25.9",
"typedoc-plugin-missing-exports": "^2.2.0"
},
"keywords": [
"events",
"modular",
"typescript",
"reactive",
"state-management",
"effects",
"data-flow",
"signals",
"reactive-programming",
"reactivity",
"topological-sort",
"dag",
"directed-acyclic-graph"
]
},
"node_packageManager": "npm",
"tasks": {
"build-dist": "deno run -A ./build_dist.ts",
"build-docs": "deno run -A ./build_docs.ts",
"build-npm": "deno run -A ./build_npm.ts",
"build-npm-dist": "cd \"./npm/\" && npm run build-dist",
"clean": "deno run -A ./clean.ts",
"test": "deno test -A",
"publish-jsr": "deno publish --allow-slow-types"
}
}