-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1005 Bytes
/
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
{
"name": "lram",
"version": "0.1.2-alpha.8",
"description": "lontten lram markdown js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"url": "https://github.com/lontten/lram.git"
},
"scripts": {
"test": "vitest",
"build:ts": "tsc",
"build:scss": "npm run generate:scss",
"dev:scss": "npm run generate:scss",
"generate:scss": "sass lram.scss:lram.css",
"release": "run-s build:* && npm publish"
},
"keywords": [
"lontten",
"lram",
"markdown"
],
"author": "lontten",
"license": "MIT",
"dependencies": {
"highlight.js": "^11.5.1",
"katex": "^0.15.1"
},
"devDependencies": {
"@types/katex": "^0.11.1",
"@types/node": "^18.0.3",
"vitest": "^0.28.3",
"ts-node": "^10.8.2",
"sass": "^1.53.0",
"npm-run-all": "^4.1.5",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}