-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.78 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
{
"name": "svelte-coordinate-conversion",
"version": "1.0.3",
"description": "converts coordinates between viewport, document and element coordinate systems",
"main": "./dist/svelte-coordinate-conversion.umd.js",
"browser":"./dist/svelte-coordinate-conversion.umd.js",
"module": "./dist/svelte-coordinate-conversion.esm.js",
"svelte": "./dist/svelte-coordinate-conversion.esm.js",
"types": "./dist/svelte-coordinate-conversion.d.ts",
"exports": {
".": {
"require":"./dist/svelte-coordinate-conversion.umd.js",
"browser":"./dist/svelte-coordinate-conversion.umd.js",
"import": "./dist/svelte-coordinate-conversion.esm.js",
"svelte": "./dist/svelte-coordinate-conversion.esm.js",
"types": "./dist/svelte-coordinate-conversion.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.js && tsc && mv src/*.d.ts dist && rm src/*.js* && rimraf dist/src",
"agadoo": "agadoo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rozek/svelte-coordinate-conversion.git"
},
"keywords": [
"coordinate-conversions",
"viewport-coordinates",
"document-coordinates",
"local-coordinates"
],
"author": "Andreas Rozek <a.rozek@gmx.de> (https://www.rozek.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rozek/svelte-coordinate-conversion/issues"
},
"homepage": "https://github.com/rozek/svelte-coordinate-conversion#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^8.2.1",
"agadoo": "^2.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.50.6",
"typescript": "^4.3.2"
},
"dependencies": {
"tslib": "^2.6.2"
}
}