-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
108 lines (108 loc) · 3.35 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@0xllllh/react-krpano",
"version": "0.1.5",
"description": "React bindings for krpano.",
"source": "./src/index.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"docs": "BABEL_ENV=\"script\" babel-node --extensions \".ts\" ./scripts/syncDoc.ts",
"clean": "rm -rf ./dist",
"test": "jest --coverage",
"watch": "concurrently --kill-others \"npm:watch-*\"",
"watch-types": "tsc -w -p ./tsconfig.typing.json",
"watch-bundle": "rollup -c -w",
"watch-test": "jest --coverage --watch",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.typing.json && rollup -c",
"lint": "eslint src --fix --ext .ts,.tsx",
"release": "HUSKY_SKIP_HOOKS=1 standard-version",
"postrelease": "npm run docs",
"release:alpha": "HUSKY_SKIP_HOOKS=1 standard-version --prerelease alpha",
"release:rc": "HUSKY_SKIP_HOOKS=1 standard-version --prerelease rc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xLLLLH/react-krpano.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"keywords": [
"react",
"krpano"
],
"author": "0xLLLLH",
"license": "MIT",
"bugs": {
"url": "https://github.com/0xLLLLH/react-krpano/issues"
},
"homepage": "https://0xllllh.github.io/react-krpano/",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-url": "^6.0.0",
"@types/escape-html": "^1.0.0",
"@types/eslint": "^7.2.5",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-jest": "^26.6.3",
"babel-plugin-jsx-control-statements": "^4.1.0",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.2",
"concurrently": "^7.0.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^4.2.0",
"glob": "^7.1.6",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rollup": "^2.34.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"standard-version": "^9.0.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"escape-html": "^1.0.3",
"uuid": "^8.3.1"
}
}