-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "typed-usa-states",
"version": "2.1.0",
"description": "An array of geographical data for all USA states with full TypeScript support",
"keywords": [
"USA States",
"USA States TypeScript",
"USA States Array",
"USA States JavaScript",
"Geographical Data",
"USA Geographical Data"
],
"homepage": "https://typed-usa-states.atanas.info",
"bugs": {
"url": "https://github.com/scriptex/typed-usa-states/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Atanas Atanasov <[email protected]> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "github:scriptex/typed-usa-states"
},
"scripts": {
"generate": "ts-node ./build/index.ts",
"tsc": "tsc -p .",
"prettier": "prettier --write src/**/*",
"minify": "./bin/minify.sh dist",
"clean": "rm -rf dist && rm -rf demo/dist",
"build": "yarn clean && yarn generate && yarn tsc && yarn prettier && yarn minify && yarn copy",
"lint": "eslint",
"copy": "cp -r dist demo/dist"
},
"dependencies": {},
"devDependencies": {
"@types/node": "22.10.7",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"prettier": "3.4.2",
"terser": "5.37.0",
"ts-node": "10.9.2",
"typescript": "5.7.3"
}
}