-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 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
{
"name": "lram",
"version": "0.1.3-alpha.1",
"description": "类 markdown ",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json",
"./styles/*": "./styles/*"
},
"files": [
"dist",
"styles"
],
"repository": {
"url": "git+https://github.com/lontten/lram.git"
},
"scripts": {
"generate:scss": "sass styles:styles --source-map",
"build:scss": "npm run generate:scss",
"build": "tsdown --platform neutral --sourcemap --minify",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release1": "run-s build && npm publish --tag alpha",
"release2": "run-s build && npm publish --tag beta",
"release3": "run-s build && npm publish"
},
"keywords": [
"lontten",
"lram",
"markdown"
],
"author": "lontten",
"license": "MIT",
"dependencies": {
"highlight.js": "^11.11.1",
"katex": "^0.16.25",
"shiki": "^3.14.0"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@types/node": "^24.9.2",
"bumpp": "^10.3.1",
"npm-run-all": "^4.1.5",
"sass": "^1.93.3",
"ts-node": "^10.9.2",
"tsdown": "^0.15.9",
"tslint": "^6.1.3",
"typescript": "^5.9.3",
"vitest": "^4.0.6"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}