-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.98 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
{
"name": "@atsu/taihou",
"version": "0.4.1",
"description": "Small state manager written in Typescript",
"main": "./dist/umd.bundle.js",
"exports": {
"types": "./dist/index.d.ts",
"node": {
"import": "./dist/commonjs2.bundle.cjs",
"require": "./dist/commonjs.bundle.cjs"
},
"default": "./dist/umd.bundle.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"compile": "tsc",
"test": "jest --config jest.config.js",
"lint": "eslint src --ext .ts --fix",
"prettier:check": "npx prettier --check .",
"prettier:write": "npx prettier --write .",
"webpack:build": "npx webpack --mode=production && tsc",
"webpack:watch": "npx webpack --mode=development --watch",
"build": "npm run webpack:build",
"build:prod": "npm run test && npm run prettier:write && npm run lint && npm run webpack:build",
"prepare": "npm run build"
},
"keywords": [
"typescript",
"state",
"dispatch",
"javascript"
],
"author": "Tsukugi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com:Tsukugi/Taihou.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/Tsukugi/Taihou#readme",
"bugs": {
"url": "https://github.com/Tsukugi/Taihou/issues"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^29.7.0",
"prettier": "2.4.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.2.6",
"typescript": "^5.2.2",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0",
"webpack-node-externals": "^3.0.0"
}
}