forked from hpcc-systems/Visualization
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.74 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.74 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@hpcc-js/markdown-it-plugins",
"version": "1.3.2",
"description": "markdown-it plugins",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./ecl-lang": {
"types": "./types/ecl-lang/index.d.ts",
"default": "./dist/ecl-lang.js"
},
"./loader": {
"types": "./types/loader.d.ts",
"default": "./dist/loader.node.js"
},
"./vitepress/*": {
"default": "./src/vitepress/*"
}
},
"types": "./types/index.d.ts",
"files": [
"dist/*",
"src/*",
"types/*"
],
"scripts": {
"clean": "rimraf --glob lib* types dist dist-test .vitepress/cache .vitepress/dist *.tsbuildinfo .turbo",
"bundle": "vite build",
"bundle-watch": "vite --port 5513",
"bundle2": "node esbuild.js",
"bundle2-watch": "npm run bundle2 -- --development --watch",
"gen-types": "tsc --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle bundle2",
"dev-docs": "vitepress dev",
"build-docs": "vitepress build",
"preview-docs": "vitepress preview",
"lint": "eslint ./src",
"lint-fix": "eslint --fix src/**/*.ts",
"docs": "typedoc --options tdoptions.json .",
"test-browser": "vitest run --project browser",
"test-node": "vitest run --project node",
"test": "vitest run",
"coverage": "vitest run --coverage",
"update": "npx --yes npm-check-updates -u -t minor",
"update-major": "npx --yes npm-check-updates -u"
},
"dependencies": {
"@hpcc-js/observablehq-compiler": "^3.3.2",
"@observablehq/framework": "1.13.2",
"@observablehq/runtime": "5.9.9",
"@types/markdown-it": "14.1.2"
},
"peerDependencies": {
"markdown-it": "14.1.0"
},
"devDependencies": {
"@hpcc-js/esbuild-plugins": "^1.4.2",
"apache-arrow": "19.0.1",
"d3-dsv": "3.0.1",
"d3-fetch": "3.0.1",
"dotenv": "16.4.7",
"shiki": "2.5.0",
"tsx": "4.19.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpcc-systems/Visualization.git"
},
"author": "Gordon Smith <gordonjsmith@gmail.com>",
"contributors": [],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hpcc-systems/Visualization/issues"
},
"homepage": "https://github.com/hpcc-systems/Visualization/tree/trunk/packages/markdonw-it-plugins"
}