-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.99 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.99 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
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
{
"name": "@vkontakte/vkui-tokens",
"version": "4.76.1",
"description": "Репозиторий, который содержит в себе дизайн-токены и другие инструменты объединенной дизайн-системы VKUI и Paradigm",
"type": "module",
"license": "MIT",
"homepage": "https://vkcom.github.io/vkui-tokens",
"main": "./utils/descriptions.cjs",
"scripts": {
"build": "mkdir -p dist && npm run build:script && npm run swc",
"build:local": "npm run build && npm run clear:dist",
"prepublishOnly": "echo 'ПРЕДУПРЕЖДЕНИЕ: Публиковать из root этот пакет нельзя: выполните команду \\033[1;32m\"npm run publish:dist\"' && exit 1",
"clean-build": "npm run clear:src && npm run build",
"build:script": "node src/build/index.ts",
"lint": "TIMING=1 eslint ./src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"lint:prettier": "prettier --check --ignore-unknown --cache --cache-location .cache/.prettiercache .",
"tsc": "tsc --project tsconfig.json",
"swc": "swc dist/ --config-file package.swcrc --strip-leading-paths --out-file-extension js -d dist -C module.type=es6",
"test": "node --test",
"test:ci": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info",
"clear:src": "find src -name '*.d.ts' -delete && find src -name '*.js' -delete",
"clear:dist": "find dist -regex '.*[^d]\\.ts' -delete",
"docs:dev": "cd docs/rspack && rspack serve -c rspack.client.mjs --mode development",
"docs:build": "cd docs/rspack && rspack build -c rspack.client.mjs --mode production",
"docs:prepare-data": "node tasks/docs/prepareTokensData.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --check",
"eslint"
],
"*.{json,md}": [
"prettier --check"
]
},
"repository": "https://github.com/VKCOM/vkui-tokens.git",
"dependencies": {
"@swc/helpers": "^0.5.19",
"csstype": "^3.1.1"
},
"devDependencies": {
"@rspack/cli": "^1.7.3",
"@rspack/core": "^1.7.3",
"@svgr/webpack": "^8.1.0",
"@swc/cli": "^0.7.10",
"@swc/core": "^1.15.11",
"@swc/plugin-transform-imports": "^12.5.0",
"@types/color": "^4.2.0",
"@types/common-tags": "^1.8.4",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.20",
"@types/node": "^24.1.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vkontakte/appearance": "https://github.com/VKCOM/Appearance#v10.2.0",
"@vkontakte/icons": "^3.24.0",
"@vkontakte/prettier-config": "^0.2.1",
"@vkontakte/vkjs": "^2.0.2",
"@vkontakte/vkui": "^7.10.0",
"clsx": "^2.1.1",
"color": "^4.2.3",
"common-tags": "^1.8.2",
"css.escape": "^1.5.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^3.0.4",
"eslint-plugin-unicorn": "^55.0.0",
"fs-extra": "^11.3.0",
"highlight.js": "^11.11.1",
"html-loader": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"lodash": "^4.17.21",
"prettier": "^3.6.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.5",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-loader": "^6.0.0",
"ts-morph": "^27.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^7.7.1"
},
"engines": {
"npm": ">=9.3.1",
"yarn": ">=1.21.1 <2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"publishConfig": {
"provenance": true
}
}