-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.78 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
{
"name": "sygnal",
"version": "4.0.2",
"description": "An intuitive framework for building fast and small components or applications based on Cycle.js",
"main": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.esm.js",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"./jsx": {
"import": "./dist/jsx.esm.js",
"require": "./dist/jsx.cjs.js"
},
"./types": {
"import": "./dist/index.d.ts",
"reauire": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "echo \"Tests to come...\"",
"build": "npx rollup -c",
"build:types": "npx rollup -c rollup.config.dts.mjs",
"build:all": "npm run build && npm run build:types",
"start": "npx rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tpresley/sygnal.git"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"cycle",
"cyclejs",
"component",
"functional reactive",
"SPA"
],
"author": "Troy Presley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tpresley/sygnal/issues"
},
"homepage": "https://github.com/tpresley/sygnal#readme",
"dependencies": {
"@cycle/dom": "^23.1.0",
"@cycle/isolate": "^5.2.0",
"@cycle/run": "^5.7.0",
"@cycle/state": "^1.7.0",
"extend": "^3.0.2",
"snabbdom": "^3.5.0",
"xstream": "^11.14.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^3.28.1",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}