-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.59 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
{
"name": "cornerfill",
"version": "0.0.1",
"description": "Experimental paint-only CSS corner-shape polyfill for Safari and Firefox",
"license": "MIT",
"type": "module",
"sideEffects": [
"./dist/index.mjs",
"./dist/auto.mjs"
],
"files": [
"dist/*.d.mts",
"dist/*.mjs"
],
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./runtime": {
"types": "./dist/runtime.d.mts",
"import": "./dist/runtime.mjs",
"default": "./dist/runtime.mjs"
},
"./compiled": {
"types": "./dist/compiled-runtime.d.mts",
"import": "./dist/compiled-runtime.mjs",
"default": "./dist/compiled-runtime.mjs"
},
"./postcss": {
"types": "./dist/postcss.d.mts",
"import": "./dist/postcss.mjs",
"default": "./dist/postcss.mjs"
},
"./auto": {
"types": "./dist/auto.d.mts",
"import": "./dist/auto.mjs",
"default": "./dist/auto.mjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/layoutit/cornerfill.git"
},
"bugs": {
"url": "https://github.com/layoutit/cornerfill/issues"
},
"homepage": "https://github.com/layoutit/cornerfill#readme",
"keywords": [
"css",
"corner-shape",
"polyfill",
"safari",
"firefox"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "node --input-type=module --eval \"import { rmSync } from 'node:fs'; rmSync('dist', { force: true, recursive: true }); rmSync('src/qualification.mts', { force: true });\"",
"generate": "node scripts/generate-qualification.mjs",
"build": "npm run clean && npm run generate && tsc -p tsconfig.json && tsc -p tsconfig.types.json",
"prepare": "npm run build",
"test": "npm run build && node --test",
"test:package": "npm run build && node scripts/package-consumer.mjs",
"test:browser:runtime": "npm run build && node scripts/runtime-regressions.mjs",
"test:browser:runtime:built": "node scripts/runtime-regressions.mjs",
"oracle:list": "node scripts/oracle.mjs list",
"oracle:smoke": "npm run build && node scripts/oracle.mjs run --cases=bevel,round",
"oracle:cross": "npm run build && node scripts/oracle.mjs run --browsers=chrome,webkit,firefox",
"oracle:mario": "npm run build && node scripts/oracle.mjs run --browsers=chrome,webkit,firefox --cases=mario-texel-face"
},
"devDependencies": {
"playwright": "1.62.1",
"postcss": "^8.4.31",
"typescript": "7.0.2"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
}