-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.82 KB
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
{
"name": "@observablehq/cli",
"license": "UNLICENSED",
"version": "0.0.39",
"type": "module",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/observablehq/cli.git"
},
"files": [
"bin/**/*.js",
"bin/**/*.ts",
"src/**/*.js",
"src/**/*.ts",
"public/**/*.css",
"public/**/*.js"
],
"bin": {
"observable": "bin/observable.ts"
},
"scripts": {
"dev": "tsx watch ./src/preview.ts",
"build": "rm -rf dist && ./bin/observable.ts build",
"test": "yarn test:mocha && yarn test:lint",
"test:mocha": "rm -rf test/.observablehq/cache && tsx ./node_modules/.bin/mocha 'test/**/*-test.*'",
"test:lint": "eslint src test public"
},
"dependencies": {
"@observablehq/runtime": "^5.9.4",
"@viz-js/viz": "^3.2.3",
"acorn": "^8.11.2",
"acorn-walk": "^8.3.0",
"fast-array-diff": "^1.1.0",
"fast-deep-equal": "^3.1.3",
"gray-matter": "^4.0.3",
"highlight.js": "^11.8.0",
"jsdom": "^22.1.0",
"katex": "^0.16.9",
"linkedom": "^0.15.6",
"markdown-it": "^13.0.2",
"markdown-it-anchor": "^8.6.7",
"mime": "^3.0.0",
"send": "^0.18.0",
"tsx": "^3.13.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/markdown-it": "^13.0.2",
"@types/mime": "^3.0.2",
"@types/mocha": "^10.0.2",
"@types/node": "^20.7.1",
"@types/send": "^0.17.2",
"@types/ws": "^8.5.6",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"d3-array": "^3.2.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18"
}
}