-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "frui.ts",
"version": "0.1.0",
"description": "MVVM UI framework",
"keywords": [
"front-end",
"framework",
"mvvm",
"react",
"mobx"
],
"private": true,
"workspaces": [
"packages/*",
"stories",
"examples/*"
],
"homepage": "https://github.com/eManPrague/frui.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/eManPrague/frui.ts.git"
},
"bugs": {
"url": "https://github.com/eManPrague/frui.ts/issues"
},
"author": "Augustin Šulc <[email protected]>",
"license": "MIT",
"main": "index.js",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"setversion": "lerna version -y --no-push --no-git-tag-version",
"publish:storybook": "yarn --cwd stories run build-storybook",
"publish:docs": "typedoc packages --out dist/docs --hideGenerator --exclude '**/node_modules' --ignoreCompilerErrors",
"publish:all": "rimraf dist && yarn run publish:storybook",
"cleanbuild": "lerna run clean && lerna run build",
"build": "lerna run build",
"test": "vitest",
"storybook": "yarn --cwd stories storybook",
"lint": "eslint \"./{packages,stories,examples}/**/*.{ts,tsx}\" --cache",
"validate": "yarn run cleanbuild && yarn run test --run && yarn run lint && yarn run publish:all"
},
"devDependencies": {
"@emanprague/eslint-config": "^3.3.0",
"@testing-library/react": "14.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"happy-dom": "^10.11.2",
"lerna": "^7.2.0",
"mobx": "6.10.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"rollup-plugin-preserve-directives": "0.2.0",
"typedoc": "^0.25.0",
"vite": "^4.4.9",
"vitest": "^0.34.3",
"vitest-mock-extended": "^1.2.1"
}
}