-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@typhonjs-fvtt/runtime-plugins",
"version": "0.0.0",
"description": "Provides TyphonJS plugins for the FoundryVTT version of the TyphonJS Runtime Library..",
"type": "module",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"sideEffects": false,
"imports": {
"#runtime/*": "@typhonjs-fvtt/runtime/*",
"#runtime-plugins/*": "@typhonjs-svelte/runtime-plugins/*"
},
"exports": {
"./security/client/dompurify": {
"types": "./_dist/security/client/dompurify/index.d.ts",
"import": "./_dist/security/client/dompurify/index.js"
},
"./svelte/store/fvtt": {
"types": "./_dist/svelte/store/fvtt/index.d.ts",
"import": "./_dist/svelte/store/fvtt/index.js"
},
"./svelte/store/web-storage": {
"types": "./_dist/svelte/store/web-storage/index.d.ts",
"import": "./_dist/svelte/store/web-storage/index.js"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@typhonjs-build-test/esm-d-ts": "^0.3.0-next.8",
"@typhonjs-build-test/rollup-plugin-pkg-imports": "^0.5.0",
"@typhonjs-config/eslint-config": "^0.6.3",
"@typhonjs-fvtt/runtime": "^0.1.3",
"eslint": "^8",
"rollup": "^4"
},
"peerDependencies": {
"svelte": ">=4.x.x"
},
"engines": {
"node": ">=16"
},
"homepage": "https://github.com/typhonjs-fvtt-lib/runtime-plugins#readme",
"keywords": [
"TyphonJS",
"Runtime",
"Library",
"Svelte",
"Foundry VTT",
"Plugins"
],
"scripts": {
"build": "node rollupAll.js",
"eslint": "eslint ."
},
"files": [
"/_dist",
"/src"
],
"directories": {},
"license": "MPL-2.0",
"repository": "github:typhonjs-fvtt-lib/runtime-plugins",
"bugs": "https://github.com/typhonjs-fvtt-lib/runtime-plugins/issues"
}