-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"name": "ffxiv-overlay-api",
"version": "4.8.0",
"description": "Build your own modern FFXIV overlay with npm & TypeScript support.",
"keywords": [
"ffxiv",
"act",
"overlay",
"mmo"
],
"author": "DSRKafuU <[email protected]>",
"homepage": "https://github.com/dsrkafuu/ffxiv-overlay-api#readme",
"license": "MIT",
"repository": "github:dsrkafuu/ffxiv-overlay-api",
"files": [
"docs",
"lib"
],
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"types": "./lib/index.d.js",
"unpkg": "./lib/overlay.min.js",
"jsdelivr": "./lib/overlay.min.js",
"scripts": {
"lint": "eslint",
"build": "rollup -c ./rollup.config.js",
"dev:rollup": "rollup --watch -c ./rollup.docs.js",
"dev:serve": "serve ./docs",
"dev": "npm-run-all -p dev:*"
},
"devDependencies": {
"@dsrca/config": "^3.6.0",
"@rollup/plugin-html": "^1.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"rollup": "^3.29.4",
"serve": "^14.2.3",
"typescript": "^4.9.5"
},
"dependencies": {
"tslib": "^2.6.3"
}
}