-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.12 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@storiny/obelisk",
"description": "Build isometrics elements with canvas",
"keywords": [
"obelisk",
"javascript",
"canvas",
"pixel",
"isometric",
"game",
"graphic",
"art",
"2.5D"
],
"version": "1.1.3",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"cdn": "dist/index.umd.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"unpkg": "dist/index.umd.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./dist/index.js"
]
},
"author": {
"name": "Max Huang",
"url": "https://github.com/nosir",
"email": "[email protected]"
},
"contributors": [
{
"name": "zignis",
"url": "https://github.com/zignis"
}
],
"license": "MIT",
"bugs": "https://github.com/storiny/obelisk/issues",
"homepage": "https://github.com/storiny/obelisk",
"docs": "https://storiny.github.io/obelisk",
"scripts": {
"doc": "typedoc src/index.ts",
"clean": "rimraf dist docs types coverage",
"lint": "eslint \"*/**/*.{ts,js,json}\"",
"lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"prepublishOnly": "yarn build",
"test": "echo \"No tests written yet\""
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"rollup": "^3.7.5",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"typedoc": "^0.23.23",
"typescript": "^4.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/storiny/obelisk.git"
}
}