-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.55 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
83
84
{
"name": "narraleaf-react",
"version": "0.2.2",
"description": "A React visual novel player framework",
"main": "./dist/main.js",
"types": "./dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "webpack --config webpack.config.js",
"build:prod": "rimraf dist && webpack --config webpack.config.js && tsc-alias -p tsconfig.json",
"build:analyze": "rimraf dist && webpack --config webpack.config.js",
"postbuild": "tsc-alias -p tsconfig.json",
"lint": "eslint \"./src/**/*.{ts,tsx,js,jsx}\"",
"lint:fix": "eslint --fix \"./src/**/*.{ts,tsx,js,jsx}\"",
"publish": "npm run lint && rimraf dist && webpack --config webpack.config.js && tsc-alias -p tsconfig.json && npm publish",
"typedoc": "typedoc src/index.ts --out doc",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.14.5",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@types/howler": "^2.2.11",
"@types/lodash": "^4.17.7",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^8.3.0",
"css-loader": "^7.1.2",
"eslint": "^9.10.0",
"eslint-plugin-react": "^7.35.2",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jest": "^27.0.6",
"postcss-loader": "^8.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.11",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typedoc": "^0.26.7",
"typescript": "^4.9.5",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^5.1.0"
},
"peerDependencies": {
"@emotion/is-prop-valid": "*",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"files": [
"dist"
],
"keywords": [
"react",
"visual-novel",
"typescript",
"component",
"narraleaf",
"nvl"
],
"author": "[email protected]",
"license": "MPL-2.0",
"dependencies": {
"client-only": "^0.0.1",
"clsx": "^2.1.1",
"framer-motion": "^11.11.9",
"howler": "^2.2.4",
"prop-types": "^15.8.1"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}