-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "@djpfs/react-vlibras",
"description": "Lib do VLibras para usar em seus projetos React",
"version": "2.0.2",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/djpfs/react-vlibras.git"
},
"keywords": [
"vlibras",
"react",
"cjs",
"esm",
"umd",
"types",
"typescript"
],
"author": "@djpfs",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"react": "17.x",
"react-dom": "17.x",
"typescript": "^4.5.2",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"ts-loader": "^9.2.5"
}
}