-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 KB
/
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
46
47
48
49
50
{
"name": "@hamsterbase/third-party",
"repository": "[email protected]:hamsterbase/third-party.git",
"author": "monster <[email protected]>",
"license": "MIT",
"version": "0.3.1",
"type": "module",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"typesVersions": {
"*": {
"runes": [
"dist/runes/index.d.ts"
],
"marker": [
"dist/marker/index.d.ts"
],
"highlighter": [
"dist/highlighter/index.d.ts"
]
}
},
"exports": {
"./runes": {
"types": "./dist/runes/index.d.ts",
"import": "./dist/runes/index.js"
},
"./marker": {
"types": "./dist/marker/index.d.ts",
"import": "./dist/marker/index.js"
},
"./highlighter": {
"types": "./dist/highlighter/index.d.ts",
"import": "./dist/highlighter/index.js"
}
},
"scripts": {
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"typescript": "^5.0.4"
}
}