-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.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
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
112
113
114
115
116
117
118
{
"name": "ixfx",
"version": "0.33.8",
"description": "A framework for programming interactivity",
"homepage": "https://github.com/clinth/ixfx/",
"keywords": [
"interactivity"
],
"author": "Clint Heyer",
"license": "MIT",
"repository": {
"url": "git+ssh://[email protected]/clinth/ixfx.git"
},
"module": "./dist/bundle.js",
"exports": {
".": "./dist/bundle.js",
"./arrays.js": "./dist/arrays.js",
"./collections.js": "./dist/collections.js",
"./chains.js": "./dist/iterables/chain.js",
"./components.js": "./dist/components.js",
"./data.js": "./dist/data.js",
"./debug.js": "./dist/debug.js",
"./dom.js": "./dist/dom.js",
"./events.js": "./dist/events.js",
"./forms.js": "./dist/forms.js",
"./flow.js": "./dist/flow.js",
"./geometry.js": "./dist/geometry.js",
"./guards.js": "./dist/guards.js",
"./global.js": "./dist/global.js",
"./iterables.js": "./dist/iterables.js",
"./io.js": "./dist/io/js",
"./modulation.js": "./dist/modulation.js",
"./maps.js": "./dist/maps.js",
"./numbers.js": "./dist/numbers.js",
"./queues.js": "./dist/queues.js",
"./random.js": "./dist/random.js",
"./rx.js": "./dist/rx.js",
"./sets.js": "./dist/sets.js",
"./stateMachine.js": "./dist/stateMachine.js",
"./svg.js": "./dist/svg.js",
"./text.js": "./dist/text.js",
"./trackers.js": "./dist/trackers.js",
"./trees.js": "./dist/trees.js",
"./util.js": "./dist/util.js",
"./webcomponents.js": "./dist/webcomponents.js",
"./visual.js": "./dist/visual.js"
},
"browsersList": [
">2% and last 2 versions and not ie 6-11"
],
"type": "module",
"files": [
"dist"
],
"scripts": {
"typecheck": "tsc",
"watch": "tsc --watch",
"dev": "NODE_OPTIONS='--max-old-space-size=16384' tsup --watch",
"clean": "rimraf dist && rimraf etc",
"run": "tsc && node -r source-map-support/register",
"build": "tsup --sourcemap && npm run typings",
"build:fast": "tsup",
"build:espruino": "tsup --config espruino.tsup.config.ts",
"prepublishOnly": "npm run clean && npm run build",
"typings": "tsc --project config/tsconfig.pkg.json",
"typings:watch": "tsc --watch --project config/tsconfig.pkg.json",
"demos": "rimraf ../ixfxfun/demos/ixfx/ && rimraf dist && npm run build && npm run demos:copy",
"demos:watch": "concurrently \"npm run dev\" \"npm run typings:watch\"",
"demos:copy": "copyfiles --up 1 ./dist/* ../ixfxfun/demos/ixfx/",
"lint": "eslint src/**",
"tsc-files": "tsc --noEmit --listFiles | xargs stat -f \"%z %N\" | npx webtreemap-cli",
"test": "tsc && ava --config ./config/ava.config.js --timeout=20s --no-worker-threads -c=1",
"circular": "madge --circular --extensions ts src/ > madge.txt",
"coverage": "c8 npm run test",
"coverage:report": "c8 report"
},
"c8": {
"exclude": [
"src/__test/**/*",
"src/config/**/*"
]
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@eslint/js": "9.13.0",
"@svgdotjs/svg.js": "^3.2.4",
"@types/bezier-js": "^4.1.3",
"@types/jsdom": "^21.1.7",
"@types/w3c-web-serial": "^1.0.7",
"@types/web-bluetooth": "^0.0.20",
"ava": "^6.1.3",
"bezier-js": "^6.1.4",
"c8": "^10.1.2",
"colorjs.io": "^0.5.2",
"concurrently": "^9.0.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^56.0.0",
"jsdom": "^25.0.1",
"json5": "^2.2.3",
"lit": "^3.2.1",
"lit-html": "^3.2.1",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "5.6.3"
},
"dependencies": {
"tsimp": "2.0.12",
"typescript-eslint": "8.11.0"
},
"eslintIgnore": [
"./dist/**/*"
]
}