-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.42 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@oddbird/polyfill-template",
"version": "0.0.0-development",
"description": "Polyfill template",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"author": "OddBird <[email protected]> (oddbird.net)",
"repository": {
"type": "git",
"url": "https://github.com/oddbird/polyfill.git"
},
"bugs": "https://github.com/oddbird/polyfill/issues",
"keywords": [
"css",
"polyfill"
],
"type": "module",
"main": "./dist/polyfill.umd.cjs",
"module": "./dist/polyfill.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/polyfill.js",
"require": "./dist/polyfill.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"README.md",
"src/**/*.ts",
"dist/**/*",
"package.json"
],
"scripts": {
"build": "vite build",
"serve": "vite dev",
"tsc": "tsc --noEmit",
"types": "tsc --emitDeclarationOnly",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslint:check": "eslint .",
"eslint:fix": "yarn eslint:check --fix",
"format:css": "yarn lint:css --fix",
"format:js": "run-s prettier:fix eslint:fix tsc",
"lint": "run-p format:css format:js",
"lint:css": "stylelint \"**/*.css\"",
"lint:js": "run-s prettier:check eslint:check tsc",
"lint:ci": "run-p lint:css lint:js",
"prepack": "run-s build types",
"test:unit": "vitest",
"test:watch": "yarn test:unit --watch",
"test:e2e": "playwright test tests/e2e/",
"test:e2e:ci": "yarn test:e2e --browser=all",
"test": "run-p test:unit test:e2e",
"test:ci": "run-p test:unit test:e2e:ci"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitest/coverage-istanbul": "^2.1.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "^25.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"resolutions": {
"tslib": ">=2"
},
"packageManager": "[email protected]"
}