-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 2.08 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
{
"name": "modelscope_studio",
"version": "1.0.2",
"private": true,
"description": "ModelScope Gradio Components",
"repository": "[email protected]:modelscope/modelscope-studio.git",
"license": "Apache-2.0",
"scripts": {
"prepare": "husky",
"dev": "gradio cc dev",
"build": "rimraf dist && gradio cc build --no-generate-docs",
"lint": "npm-run-all --parallel lint:* && npm run format",
"format": "prettier --cache --write '**/*.{js,jsx,tsx,ts,svelte,less,md,yaml,yml,json}' --no-error-on-unmatched-pattern",
"lint:js": "eslint . --fix --cache",
"lint:ts": "tsc && svelte-check --tsconfig ./tsconfig.json",
"check-encoding": "python ./scripts/check_encoding.py",
"lint:py": "pnpm run check-encoding && flake8 . && isort . && yapf --in-place --recursive --exclude=node_modules/ .",
"lint:style": "stylelint --allow-empty-input --cache --fix \"**/*.{less,css}\" ",
"changeset": "changeset",
"fix-changelog": "node ./config/changelog/dist/fix-changelog.mjs",
"version": "pnpm -F '@modelscope-studio/changelog' build && changeset version && pnpm run fix-changelog",
"ci:create-tag-n-release": "tsx ./scripts/create-tag-n-release.ts",
"ci:publish": "tsx ./scripts/publish-to-pypi.ts",
"ci:version": "pnpm run version"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@manypkg/get-packages": "^2.2.2",
"@modelscope-studio/changelog": "workspace:*",
"@modelscope-studio/lint-config": "workspace:*",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.1",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-svelte": "^3.3.2",
"rimraf": "^6.0.1",
"stylelint": "^16.11.0",
"svelte": "^4.2.19",
"svelte-check": "^4.1.0",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"main_changeset": true
}