-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.56 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.56 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
{
"name": "@diplodoc/directive",
"version": "0.3.3",
"description": "Directive syntax for Diplodoc platform",
"main": "build/index.js",
"types": "build/index.d.ts",
"homepage": "https://diplodoc.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/diplodoc-platform/directive.git"
},
"bugs": {
"url": "https://github.com/diplodoc-platform/diplodoc/issues"
},
"author": "",
"license": "MIT",
"files": [
"build"
],
"scripts": {
"build": "npm run build:clean && run-p build:js build:declarations",
"build:clean": "node scripts/clean.mjs",
"build:js": "node esbuild/build.mjs",
"build:declarations": "tsc -p tsconfig.publish.json --emitDeclarationOnly --outDir ./build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"lint": "lint update && lint",
"lint:fix": "lint update && lint fix",
"pre-commit": "lint update && lint-staged",
"prepare": "husky"
},
"devDependencies": {
"@diplodoc/lint": "^1.13.2",
"@diplodoc/tsconfig": "^1.0.2",
"@types/markdown-it": "^13.0.9",
"@types/markdown-it-attrs": "^4.1.3",
"@types/node": "^22.19.7",
"@vitest/coverage-v8": "^3.2.4",
"markdown-it": "^13.0.2",
"markdown-it-attrs": "^4.2.0",
"npm-run-all": "^4.1.5",
"ts-dedent": "^2.2.0",
"typescript": "^5.6.3",
"vitest": "^3.2.4"
},
"dependencies": {
"markdown-it-directive": "^2.0.6"
}
}