This repository was archived by the owner on Feb 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.37 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.37 KB
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
83
{
"name": "input-magic",
"version": "1.0.0",
"description": "Inupt Magic 输入法!",
"main": "index.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"format": "prettier --write . --ignore-path .gitignore",
"eslint": "eslint . --cache --cache-location .cache/.eslintcache --report-unused-disable-directives --ext .ts,.js,.jsx,.cjs,.mjs --ignore-path .eslintignore",
"eslint-fix": "eslint --fix . --cache --cache-location .cache/.eslintcache --report-unused-disable-directives --ext .ts,.js,.jsx,.cjs,.mjs --ignore-path .eslintignore",
"stylelint": "stylelint assets/scss/. --cache --cache-location .cache/.stylelintcache --ignore-path .stylelintignore",
"stylelint-fix": "stylelint --fix assets/scss/. --cache --cache-location .cache/.stylelintcache --ignore-path .stylelintignore",
"lint": "npm-run-all --parallel eslint stylelint",
"lint-fix": "npm-run-all --parallel eslint-fix stylelint-fix",
"format-and-lint": "npm-run-all --parallel format lint",
"format-and-lint-fix": "npm-run-all --parallel format lint-fix",
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"server": "webpack-dev-server --open --config webpack.dev.js",
"test": "npm-run-all --parallel test-*",
"test-unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yuba-Technology/Input-Magic.git"
},
"keywords": [
"input-magic",
"ts"
],
"author": "Yuba Technology, all Input Magic contributors and You",
"license": "MIT",
"bugs": {
"url": "https://github.com/Yuba-Technology/Input-Magic/issues"
},
"homepage": "https://github.com/Yuba-Technology/Input-Magic#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.45.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-markdown": "^5.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^54.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.1.0",
"mini-css-extract-plugin": "^2.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"sass": "^1.77.8",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"stylelint": "^16.7.0",
"stylelint-cli": "^1.3.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.4.1",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.2",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"node-fetch": "^3.3.2",
"pixi.js": "^8.5.1"
}
}