-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 934 Bytes
/
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
{
"name": "@asherondb/ac-position",
"version": "1.0.3",
"description": "A helper class for managing game position data for Asheron's Call.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build"
},
"files": [
"dist"
],
"main": "./dist/ACPosition.umd.cjs",
"module": "./dist/ACPosition.js",
"exports": {
".": {
"import": "./dist/ACPosition.js",
"require": "./dist/ACPosition.umd.cjs"
}
},
"devDependencies": {
"terser": "^5.16.4",
"typescript": "^4.9.3",
"vite": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AsheronDB/ac-position-js.git"
},
"keywords": [],
"author": "Jesse L.K. Overton <[email protected]> (https://ovrtn.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/AsheronDB/ac-position-js/issues"
},
"homepage": "https://github.com/AsheronDB/ac-position-js#readme"
}