forked from jae-jae/Userscript-Plus
-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 622 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 622 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@userjs/builder",
"description": "Create a UserScript",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"exports": {
".": {
"import": {
"types": "./typings/index.d.ts",
"default": "./src/index.js"
}
}
},
"directories": {
"lib": "src"
},
"files": [
"src",
"typings"
],
"dependencies": {
"@userjs/i18n": "workspace:^",
"minimist": "^1.2.8",
"sass-embedded": "^1.85.1",
"watchpack": "^2.4.2"
}
}