-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.79 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
{
"author": "support@purpledotprice.com",
"name": "@purple-dot/browser",
"description": "Purple Dot Browser SDK",
"license": "Apache-2.0",
"version": "0.3.0",
"scripts": {
"build": "tsc",
"prepare": "tsc",
"lint": "biome ci src/ tests/",
"typecheck": "tsc --noEmit && tsc --noEmit --project tsconfig.tests.json",
"lint:fix": "biome check --write --unsafe src/ tests/",
"format": "biome check --write --unsafe src/ tests/",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/purple-dot/browser.git"
},
"bugs": {
"url": "https://github.com/purple-dot/browser/issues"
},
"homepage": "https://github.com/purple-dot/browser#readme",
"files": [
"dist/**/*"
],
"exports": {
".": "./dist/index.js",
"./availability": "./dist/availability.js",
"./api": "./dist/api.js",
"./checkout": "./dist/checkout.js",
"./cart": "./dist/cart.js",
"./shopify-ajax-cart": "./dist/shopify-ajax-cart.js",
"./shopify-ajax-interceptors": "./dist/shopify-ajax-cart-interceptors.js",
"./shopify-storefront-cart": "./dist/shopify-storefront-cart.js",
"./feature-flags": "./dist/feature-flags/index.js"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@testing-library/dom": "^9.3.1",
"@tsconfig/recommended": "^1.0.2",
"@types/js-cookie": "^3.0.3",
"@vitest/coverage-v8": "^4.0.10",
"happy-dom": "^20.0.0",
"http-server": "^14.1.1",
"jsdom": "22.1.0",
"typescript": "^5.1.6",
"vitest": "^4.0.10",
"vitest-fetch-mock": "^0.4.5",
"whatwg-fetch": "^3.6.2"
},
"packageManager": "pnpm@10.12.4",
"dependencies": {
"js-cookie": "^3.0.5",
"murmurhash": "^2.0.1"
},
"publishConfig": {
"access": "public"
}
}