-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
67 lines (67 loc) · 1.65 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
{
"name": "@observablehq/inputs",
"description": "Lightweight user interface components",
"version": "0.12.0",
"author": {
"name": "Observable, Inc.",
"url": "https://observablehq.com"
},
"license": "ISC",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"jsdelivr": "dist/inputs.min.js",
"unpkg": "dist/inputs.min.js",
"exports": {
".": {
"umd": "./dist/inputs.min.js",
"default": "./dist/index.js"
},
"./dist/index.css": "./dist/index.css"
},
"repository": {
"type": "git",
"url": "https://github.com/observablehq/inputs.git"
},
"files": [
"dist/**/*.css",
"dist/**/*.js",
"src/**/*.js"
],
"engines": {
"node": ">=14.5.0"
},
"scripts": {
"test": "yarn test:mocha && yarn test:lint",
"test:mocha": "mkdir -p test/output && mocha 'test/**/*-test.js' test/input.js",
"test:lint": "eslint src test",
"prepublishOnly": "rm -rf dist && rollup -c && node bin/clean-css < src/style.css > dist/index.css",
"dev": "vite dev"
},
"_moduleAliases": {
"@observablehq/inputs": "./src/index.js"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^3.1.0",
"apache-arrow": "^17.0.0",
"clean-css": "^5.3.3",
"d3": "^7.9.0",
"eslint": "^8.57.0",
"js-beautify": "^1.15.1",
"jsdom": "^24.1.1",
"jsesc": "^3.0.2",
"mocha": "^10.7.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"vite": "^5.3.5"
},
"dependencies": {
"htl": "^0.3.1",
"isoformat": "^0.2.0"
},
"publishConfig": {
"access": "public"
}
}