-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 2.77 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
{
"private": true,
"author": "Vladimír Macháček",
"license": "MIT",
"scripts": {
"repo:init": "pnpm i -r",
"repo:version": "pnpm -r exec pnpm version",
"repo:patch": "pnpm repo:version patch",
"repo:minor": "pnpm repo:version minor",
"repo:publish": "pnpm build && pnpm build:generate-stats && pnpm login --auth-type legacy && pnpm -r publish",
"watch": "cross-env watch=true pnpm build",
"build": "ts-node scripts/build.ts",
"build:notypes": "cross-env typesDisabled=true ts-node scripts/build.ts",
"build:generate-stats": "ts-node scripts/build-generate-stats.ts",
"bundler:build": "cross-env packages=bundler pnpm build",
"bundler:build:notypes": "cross-env packages=bundler pnpm build:notypes",
"bundler:watch": "cross-env packages=bundler watch=true pnpm watch",
"bundler:plg:start": "ts-node packages/bundler/playground/bundles.mjs",
"bundler:test": "pnpm jest:test packages/bundler/tests/jest",
"stylify:build": "cross-env packages=stylify pnpm build",
"stylify:build:notypes": "cross-env packages=stylify pnpm build:notypes",
"stylify:watch": "cross-env packages=stylify watch=true pnpm watch",
"stylify:test": "pnpm jest:test packages/stylify/tests/jest",
"stylify:plg:run": "ts-node packages/stylify/playground/index.ts",
"stylify:gdp": "node --experimental-modules packages/stylify/tools/default-preset-generator",
"stylify:mqe": "node --experimental-modules packages/stylify/tools/media-queries-extractor",
"eslint:check": "eslint packages/**/src/**/*.{js,ts}",
"eslint:fix": "pnpm eslint:check --fix",
"jest:test": "jest --clearCache && node --experimental-vm-modules node_modules/jest/bin/jest --maxWorkers 1",
"jest:test+coverage": "pnpm jest:test --collect-coverage --coverageProvider=v8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stylify/packages.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/stylify/packages/issues"
},
"homepage": "https://github.com/stylify/packages/#readme",
"devDependencies": {
"@babel/core": "^7.22",
"@babel/plugin-proposal-class-properties": "^7.18",
"@babel/plugin-proposal-object-rest-spread": "^7.20",
"@babel/preset-env": "^7.22",
"@babel/preset-typescript": "^7.21",
"@types/jest": "^29.5",
"@types/node": "^18.16",
"@typescript-eslint/eslint-plugin": "^6.5",
"@typescript-eslint/parser": "^6.5",
"autoprefixer": "^10.4",
"babel-jest": "^29.6",
"cross-env": "^7.0",
"esbuild": "^0.17",
"eslint": "^8.48",
"fast-glob": "^3.3",
"fs-extra": "^11.1",
"identity-obj-proxy": "^3.0",
"jest": "^29.6",
"jest-environment-jsdom": "^29.6",
"jest-environment-node": "^29.6",
"promise": "^8.3",
"ts-jest": "^29.1",
"ts-node": "^10.9",
"tslib": "^2.6",
"typescript": "^4.9"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^8.3"
}
}