-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 961 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 961 Bytes
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
{
"name": "rspress-plugin-font-open-sans",
"version": "1.0.3",
"repository": "https://github.com/rspack-contrib/rspress-plugin-font-open-sans",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"static"
],
"scripts": {
"build": "rslib",
"dev": "rslib -w",
"prepare": "npm run build",
"bump": "npx bumpp"
},
"devDependencies": {
"@rslib/core": "^0.21.2",
"@types/node": "^24.12.2",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@rspress/core": "^2.0.0"
},
"packageManager": "pnpm@10.33.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}