-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
69 lines (69 loc) · 1.78 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
{
"name": "content-tag",
"version": "3.1.0",
"description": "A rust program that uses a fork of swc to parse and transform Javascript containing the content-tag proposal",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/embroider-build/content-tag.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"browser": {
"types": "./index.d.ts",
"default": "./pkg/standalone.js"
},
"default": {
"types": "./index.d.cts",
"default": "./pkg/node.cjs"
}
},
"./standalone": {
"import": {
"types": "./index.d.ts",
"default": "./pkg/standalone.js"
},
"require": {
"types": "./pkg/stubs/require-types.d.cts",
"default": "./pkg/stubs/require.cjs"
}
}
},
"files": [
"pkg/*",
"pkg/node/*",
"pkg/standalone/*",
"index.d.ts",
"index.d.cts"
],
"scripts": {
"build": "./build.sh",
"prepack": "./build.sh",
"ci:node": "mocha 'test/node/*.{js,cjs}'",
"ci:browser": "vitest --browser.name=chrome --browser.headless",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:package": "publint",
"lint:published-types": "attw --profile node16 --pack",
"start": "vite",
"test": "npm run ci:node && npm run ci:browser"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@vitest/browser": "^2.1.8",
"chai": "^4.3.7",
"code-equality-assertions": "1.0.1",
"concurrently": "^8.2.2",
"eslint": "^8.44.0",
"mocha": "^10.2.0",
"publint": "^0.2.12",
"release-plan": "^0.5.0",
"toml": "^3.0.0",
"vite": "^5.0.4",
"vitest": "^2.1.8",
"webdriverio": "^9.4.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}