-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.72 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
{
"name": "@zouloux/signal",
"version": "0.3.0",
"description": "Thin and simple functional event system with strong typing. Inspired from Robert Penner's AS3 Signals.",
"type": "module",
"main": "./dist/index.es2017.cjs",
"module": "./dist/index.es2020.mjs",
"unpkg": "./dist/index.es2017.min.js",
"types": "./dist/index.d.ts",
"scripts": {
"reset": "rm -rf node_modules package-lock.json && npm i",
"test": "node tests/signal.test.cjs",
"build": "tsbundle build",
"clean": "tsbundle clean",
"publish": "tsbundle publish"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@solid-js/cli": "^1.7.5",
"@zouloux/tsbundle": "^1.2.12"
},
"tsbundle": {
"output": "./dist",
"generateTypeDefinitions": false,
"exportBits": true,
"exportMap": {
"Signal": "./signal",
"StateSignal": "./state-signal"
},
"files": [
{
"input": "./src/index.ts",
"formats": [
"es2017.cjs",
"es2020.mjs",
"es2017.min.js"
],
"generateTypeDefinitions": true
},
{
"input": "./src/signal.ts",
"formats": [
"es2017.min.js"
]
},
{
"input": "./src/state-signal.ts",
"formats": [
"es2017.min.js"
]
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zouloux/signal.git"
},
"author": "Alexis Bouhet (ZoulouX)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zouloux/signal/issues"
},
"homepage": "https://github.com/zouloux/signal#readme",
"keywords": [
"signal",
"event",
"system",
"functional",
"strong",
"typing",
"typescript",
"javascript"
]
}