-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
{
"name": "@public-ui/theme-bmf",
"version": "1.0.0-alpha.0",
"private": true,
"type": "module",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"clean": "git clean -f -d -X",
"dev": "rollup -c --watch",
"format": "prettier --check .",
"lint": "tsc --noemit && eslint . --ignore-pattern \"dist/*\"",
"prepack": "pnpm build",
"start": "npm-run-all2 --parallel dev serve",
"serve": "sh serve.sh",
"test": "THEME_MODULE=dist THEME_EXPORT=BMF kolibri-visual-test",
"test-update": "THEME_MODULE=dist THEME_EXPORT=BMF kolibri-visual-test --update-snapshots theme-snapshots.spec.js",
"pretest": "pnpm build",
"pretest-update": "pnpm build",
"unused": "knip",
"update": "ncu -t minor -u && ncu"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.15.0",
"@public-ui/components": "2.1.8",
"@public-ui/visual-tests": "2.1.8",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-typescript": "12.1.1",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"eslint": "9.15.0",
"knip": "5.37.1",
"nodemon": "3.1.7",
"npm-check-updates": "17.1.11",
"npm-run-all2": "7.0.1",
"postcss": "8.4.49",
"prettier": "3.3.3",
"rollup": "4.27.3",
"rollup-plugin-postcss": "4.0.2",
"sass": "1.81.0",
"typescript": "5.6.3"
},
"peerDependencies": {
"@public-ui/components": "2.1.8"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"assets",
"dist"
],
"engines": {
"pnpm": "^9"
}
}