-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.43 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
{
"name": "@yldio/percoct-ui",
"version": "0.0.0",
"keywords": [
"react",
"javascript",
"design",
"library",
"typescript",
"ui",
"system"
],
"author": "Luis Couto <[email protected]>",
"contributors": [],
"license": "UNLICENSED",
"description": "YLD.io's UI Library. Following the YLD.io's design system.",
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/yldio/percoct-ui.git"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/"
],
"scripts": {
"format-check": "prettier . --check",
"format": "prettier . --write",
"lint": "eslint .",
"compile": "tsc --project ./tsconfig.json",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook --coverage",
"convert-coverage": "npx nyc report --reporter=json-summary -t coverage/storybook --report-dir coverage/storybook/converted"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@eslint/js": "^9.17.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@storybook/addon-coverage": "^1.0.5",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/experimental-addon-test": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/test-runner": "^0.21.0",
"@vitest/browser": "^2.1.8",
"@vitest/coverage-istanbul": "^2.1.8",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"jiti": "^2.4.2",
"playwright": "^1.49.1",
"prettier": "3.4.2",
"prop-types": "^15.8.1",
"rollup": "^4.30.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"semantic-release": "^24.2.1",
"storybook": "^8.4.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vitest": "^2.1.8"
}
}