-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.2 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
{
"version": "0.0.14",
"name": "@mappable-world/mappable-entity-tile-loader",
"description": "Mappable Maps JS API 3.0 example @mappable-world/mappable-entity-tile-loader",
"types": "./dist/types/index.d.ts",
"main": "./dist/esm/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mappable-world/mappable-entity-tile-loader.git"
},
"scripts": {
"test": "jest",
"lint": "eslint ./ && tsc --noemit --noErrorTruncation",
"build": "npm run build:prod && npm run build:esm",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"examples": "mappable-cli example --input=example --output=dist/example",
"build:esm": "rm -rf ./dist/esm && tsc --project tsconfig.build.json --target es2018 --module es6 --outDir dist/esm",
"watch": "webpack --watch",
"start": "webpack serve --port 9000",
"bump": "npm version patch --no-git-tag-version && npm run bump:git",
"bump:git": "git add --all && git commit -m \"New version $npm_package_version\" && git tag $npm_package_version && git push --tags origin HEAD:main"
},
"devDependencies": {
"@mappable-world/mappable-cli": "^0.0.36",
"@mappable-world/mappable-types": "^0.0.20",
"@types/got": "9.6.12",
"@types/jest": "29.5.3",
"@types/jsdom": "21.1.1",
"@types/lodash": "^4.14.197",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"cross-fetch": "4.0.0",
"css-loader": "6.8.1",
"dotenv": "16.3.1",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"got": "11.8.6",
"html-webpack-plugin": "^5.5.3",
"identity-obj-proxy": "3.0.0",
"jest": "29.6.1",
"jsdom": "22.1.0",
"prettier": "3.0.0",
"react": "^18.2.0",
"style-loader": "3.3.3",
"terser-webpack-plugin": "5.3.9",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"typescript": "5.1.6",
"vue": "^3.4.38",
"webpack": "5.88.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"license": "Apache-2",
"dependencies": {
"lodash": "^4.17.21"
}
}